I have an instance variable inside a class that looks like
private GridLocation [][] world;
I'm not sure how you add values to a pair of angle brackets like that. I just know that the two values represent the coordinates of a square in a grid. How would you add the square (1,2) for example? According to my book, you assign values inside the constructor with
this.name = name;
I'm very unsure what to do in this case though