How can I fix a TOKEN ERROR?

Hello! I’m going through tutorials trying to play PROJECT STEALTH to learn & I get an UNEXPECTED TOKEN error.

Assets/bob.js(5,1): BCE0043: Unexpected token: }.

What does this mean? Does it have to do with line 5 of the code? When ‘MONODEVELOP’ pops up it gives me this:

#pragma strict

function Start () {if(input.GetButtonDown(“Jump”))

}

function Update () {

}

I’m a 3D artist & know HTML & CSS. Just not sure where to start trouble shooting.

Anyone?

It should be:

function Start () {if(input.GetButtonDown("Jump")){

}

function Update () {

}

You missed a { .