Need help with Accessing MultiDimensional Arrays With Indexes

Tell us what’s happening:

Why should i use var myData = myArray[2][1]; to get myData = 8. I did not get this, Could someone help me out regarding this?

Your code so far

// Setup
var myArray = [[1,2,3], [4,5,6], [7,8,9], [[10,11,12], 13, 14]];

// Only change code below this line.
var myData = myArray[2][1];

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/access-multidimensional-arrays-with-indexes

Thank you so much. I understood now. :slight_smile: