Unexpected Token Error

The error is:

Assets/placePickups.js(8,18): BCE0043: Unexpected token: 2.

 #pragma strict
    var objectToCreate : Transform;
    var radius : int;
    
    
    function Start () {
    
    	**for (var 1 : int = 0;1 < 5; 1++)**
    	{
    		var randWithinCircle = Random.insideUnitSphere * radius;
    		var pickUp = Instantiate (objectToCreate, Vector3(936 + randWithingCircle.x, 8, 1080 + radWithinCircle.z), Quaternion.identity) as GameObject;
    	}
    }

Are these ** actually in your script, they should not be there.
Or are you trying to use these to highlight the problem?

Did you mean :

for (var i : int = 0; i < 5; i++)

not :

for (var 1 : int = 0;1 < 5; 1++)

Lastly you never give the radius var a value just a type(int). This var needs a value. It’s type would also be better as float not int.