Can someone help? Error BCE0044

What’s wrong with this code? Unity says Assets/EnemyAI.js(9,68): BCE0044: unexpected char: 0xAD.

var target : Transform; 
var moveSpeed = 3; 
var rotationSpeed = 3; 
var myTransform : Transform; 

function Awake(){ myTransform = transform; 
}

function Start(){ target = GameObject.FindWithTag("Player").transfo­rm; 
}

function Update () { var lookDir = target.position - myTransform.position; lookDir.y = 0; // zero the height difference myTransform.rotation = Quaternion.Slerp(myTransform.rotation, Quaternion.LookRotation(lookDir), rotationSpeed*Time.deltaTime); myTransform.position += myTransform.forward * moveSpeed * Time.deltaTime;
}

Delete and retype line 9. If you view your code in any program that displays characters with an ASCII value above 128, you will see a bad character between the ‘o’ and the ‘r’ in ‘transform.’

Thanks!