How would we access the word "Fred" from the following 2D array?

names[1];names[0][2];names[0][1];names[1][2];

Whoop! The first index refers to which subarray we are accessing. The second index refers to the element in that subarray.

Uh oh, spaghetti-ohs! The first index refers to which subarray we are accessing. The second index refers to the element in that subarray.