Roll-a-ball Tutorial Video 6(Displaying Text Error)

-My problem is at the end of the video in the scripting for the wintext, i get this error(I know the prob is a unexpected symbol but i cant find it)!

Assets/_Scenes/Scripts/PlayerController.cs(42,26): error CS1525: Unexpected symbol `’

-And this is my full script!

using UnityEngine;
using System.Collections;

public class PlayerController : MonoBehaviour
{

public float speed;
public GUIText countText;
public GUIText winText;
private int count;

void Start ()
{
	count = 0;
	SetCountText ();
	winText.text = "";
}

void FixedUpdate ()
{
	float moveHorizontal = Input.GetAxis("Horizontal");
	float moveVertical = Input.GetAxis("Vertical");

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

	GetComponent<Rigidbody>().AddForce(movement * speed * Time.deltaTime);
}

void OnTriggerEnter(Collider other) 
{
	if(other.gameObject.tag == "PickUp")
	{
		other.gameObject.SetActive(false);
		count = count + 1;
		SetCountText ();
	}
}

void SetCountText ()
{
	countText.text = "Count: " + count.ToString();
	if(count ­>= 10);
	{
		winText.text = "YOU WIN!";
	}
}

}

Delete the line and retype: if(count >=10), there seems to be some invisible character (linebreak etc) before >.