What did I do Wrong In Roll-A-Ball character controller?

I get an “unexpected symbols” in this character movement codefor the Roll-A-Ball tutorial! Please help! My code is in C#

using UnityEngine;
using System.Collections;

public class PlayerController : MonoBehaviour
{
	void FixedUpdate()
	{
		float moveHorizontal = Input.getAxis ("Horizontal");
		float moveVertical = Input.getAxis("Vertical"):

		Vector3 movement = new Vector3(moveHorizontal, 0.0f, moveVertical);

	    rigidbody.AddForce(movement);
	}
}

you have a full colon instead of a semi colon on line 9,
other than that everything else seems okay

 float moveVertical = Input.getAxis("Vertical"): //Wrong :( notice the ":"
 float moveVertical = Input.getAxis("Vertical"); //Right :)  we always use ";" at the end of commands

Hope it helps and good luck with the tutorial