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);

