I am trying to create and array of a particular class, Ant, its actually an ArrayList and a multidimensional Array, see below. What I need to know is what do I need to add or change to do this.
Game.java
Ant.javapublic void initializeBoard() { ArrayList board[][] = new ArrayList[27][27]; }
public class Ant { }