Problem with javascript

hello
I have encountered an issue early in the coding for my game, Zeta Kaya. the problem is it asks for a semicolon when i already have one in line 1.
please help me with this issue. thanks. p.s its javascript
thank you so much
Ragoser
ver isQuit= false;

function OnMouseEnter(){
	renderer.material.color=Color.red;
	}

function OnMouseExit(){
	renderer.material.color=Color.white;
}

function OnMouseUp(){
	
}

Change “ver” to “var”. (I almost missed it since it wasn’t in your code block).