I've got some data that looks like this:
[[12, 23],[27,-6],[52, -32],[82, 11]]
How can I access specific elements within these arrays?
With a standard array like this:
[a, b, c, d]
It's easy to reference 'b' as arrayName[1]. But how can I do the same for multidimensional arrays, and does it work for jagged arrays too?