Insert a semicolon at the end error.

I tried to make a script but I got this error.

Assets/Move.js(8,17): UCE0001: ‘;’ expected. Insert a semicolon at the end.

How do i fix this error?
This is my script.

#pragma strict    
function Update () 
{
      var moveHorizontal = Input.GetAxis("Horizontal");
      var moveVertical = Input.GetAxis("Vertical");
}
{
      Vector3 move = new Vector3(moveHorizontal, 0 , moveVertical);
      rigidbody.AddForce(move);
}

You seem to have two blocks but one is outside the Update. Either it all goes in the Update or you need to create a method to use the second part but I doubt you are after that since you are using local variables in the second part.

function Update () 
{
      var moveHorizontal = Input.GetAxis("Horizontal");
      var moveVertical = Input.GetAxis("Vertical");
      var move:Vector3 = new Vector3(moveHorizontal, 0 , moveVertical);
      rigidbody.AddForce(move);
}