Two Dimensional Arrays....

How do you access the data in an array like this? Is it like:
my2dArray[1][1] is 3
my2dArray[0][2] is 3
my2dArray[1][2] is 4?
I'm assuming both the columns and rows are zero-indexed, but I don't know about the bracket setup.