UCE0001: ';' expected. Insert a semicolon at the end.

I’m new to Unity and try to destroy an object with collision, and play a sound effect. I keep getting the error in the question and don’t know what to do - any fixes?
#pragma strict
var pickup : AudioClip;
function OnTriggerEnter(other : Collider){
if(other.tag == “Player”);{
GetComponent AudioSource(pickup);
yield WaitForSeconds (0.4);
Destroy( gameObject );}
}

this img may be more useful