Access MultiDimensional Arrays With Indexes - JavaScript Challenge

Tell us what’s happening:

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[8][0];

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; CrOS x86_64 10032.86.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.140 Safari/537.36.

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

Any tips on this one?

var myData = myArray[8][0] is just one of many guesses.

I forget what my original intuition for this problem was.

Also, I would guess 1 would align with 20.

Yes. But does that relate to this challenge?

Figured it out. thanks

Thank You!
I couldn’t figure out what to call a nested array :smiley: