can someone pls tell me whats wrong here
i want to create two objects with a delay of 5000 in between
for (int i=0;i<2;i++) {
Greenfoot.delay(5000);
x=Greenfoot.getRandomNumber(600);
this.addObject(new bee(), x, 20);
}
