still not working...
import greenfoot
public class game extends MainWorldClass
{
int[][] myTwoDArray = {
{0, 0, 0, 0, 0},
{2, 0, 1, 0, 2},
{0, 0, 0, 0, 0}
};
public game()
{
super(myTwoDArray); // super call must always be first statement in a world constructor
}
}