error CS1002: ; expected

I keep getting this error and it wont let me run the game. Here is my code. I thought I might be missing a “;” but I don’t see where.

using UnityEngine;
using System.Collections;

public class PlayerControler : MonoBehaviour {

private Rigidbody2D rb2d;

void Start()
{
rb2d = GetComponent ();
}

void FixedUpdate()
{
float moveHorizontal + Input.GetAxis (“Horizontal”);
float moveVertical + Input.GetAxis (“Vertical”);
Vector2 movement = new Vector2 (moveHorizontal, moveVertical);
rb2d.AddForce (movement);
}

}

The ‘+’ plus signs in these lines should be ‘=’ equals symbols:

float moveHorizontal + Input.GetAxis ("Horizontal");
float moveVertical + Input.GetAxis ("Vertical");

Also, for the future, please use code tags: Using code tags properly