';' Expected Please insert semi colon here (3,13) HELP

var target : Transform;
var moveSpeed = 3;
var rotation speed = 3;

rotation and speed are two different things on line 3

@Bacn Hello there! Your problem is pretty simple, but I was once scratching my head with this one too.
Your problem is that you have a space between the words in the variable “rotation speed”.

So instead of a space, these are all acceptable titles:
rotationspeed, rotationSpeed, and rotation_speed

Hope this helps!