Okay -- there is no problem with the snippet, in itself. The problem is where you placed the snippet in your code. It is being executed one time -- when your world is being created. It is not being called while the world is running because it is placed in the constructor of the class. You need to place that code in the act method of the class for it to be continuously run (so that when the number of asteroids in the world becomes zero, more will be added). The World subclass template does not automatically create an act method like the Actor subclass template does; but, you there is an act method that you can override included in the World class too -- just add (override) the method yourself (add the method in your Start class). Then move the snippet into that method.

