This may seem like a rather odd/dumb question but I would like to replicate the following JavaScript array in Java.
var myArray = new Array();
myArray[0] = ['Time', 'Temperature'];
myArray[1] = ['00:02', 20];
myArray[2] = ['01:30', 21];
What is strange to me is that there are multiple values in a single array location so I don't know what is going on; is this a two-dimensional array?