I am trying to access certain values in an array, using developer console I have printed out the array and looked at the structure of the array, however I am unsure as to how I can access these values.
var position = ctrack.getCurrentPosition();
console.log(position);
Below you can see a close up from my console output:


The developer console looks like this. So say I wanted to access the third entry which is open on the image and get out the values of 0 and 1 and print just them to console. How would I achieve this?
position[3][0],position[3][1]?