Thanks, can you point me in the right direction for finding the AS for that?

Would I be setting the numbers here with min and max values?:
food.x = Math.random()*450;
food.y = Math.random()*350;

What would that look like?
food1.x = Math.random()*< 100 > 500;
food1.y = Math.random()* < 100 > 500;

food2.x = Math.random()*< 501 > 1000;
food2.y = Math.random()* < 501 > 1000;

Or something else entirely?

Thanks.