Hi,
Can someone help. I've got this but it doesn't like the last line new Star
/**
* Draw stars in random locations in space
*/
private void makeStar()
{
{
int x,y;
x = Greenfoot.getRandomNumber(getWidth());
y = Greenfoot.getRandomNumber(getHeight());
GreenfootImage background = getBackground();
GreenfootImage image = new GreenfootImage(getWidth(),getHeight());
image.setColor(Color.WHITE);
image.fillOval(2,2,x,y);
setBackground(image);
addObject(new Star(), x, y);


Use 'code' tags for your code, please. I was going to try and help, but it is too hard to copy/paste or refer to lines of your code.