UCE0001 even though i got the semicolon right (i think)

i was making a game through this tutorial (ill link it) and even though it worked for the guy on the tutorial it doesnt work for me the mono devolop asked me to accept something and i did but it was a wrong choice i guess so if somone knows anything about it please help me
this is the link: 2. MAKE a GAME (Unity) - YouTube
this is the code:

#pragma strict

var rotationSpeed = 100;
this code is for making a ball move right and left

function Update () 
{
      var rotation : float Input.GetAxis ("Horizontal") * rotationSpeed;
      rotation *= Time.deltaTime;
      rigidbody.AddRelativeTorque (Vector3.back * (rotation);
}

Missing an = and a )

Ill leave it to you to work out where :wink:

Edit: Ok here they are :slight_smile: (Good job in finding them)

var rotation : float = Input.GetAxis ("Horizontal") * rotationSpeed; // = here after float

rigidbody.AddRelativeTorque (Vector3.back * (rotation) ); // Last ) here