Basic Data Structures - Create complex multi-dimensional arrays

Hello. Can anyone tell me why this isn’t working? I can’t for the life of me work out what’s even wrong as it looks identical to one of the answers. Any help much appreciated!

  **Your code so far**
let myNestedArray = [
// Only change code below this line
['unshift', false, 1, 2, 3, 'complex', 'nested'],
['loop', 'shift', 6, 7, 1000, 'method'],
['concat', false, true, 'spread', 'array', ['deep']],
['mutate', 1327.98, 'splice', 'slice', 'push', [['deeper']]],
['iterate', 1.3849, 7, '8.4876', 'arbitrary', 'depth' [[['deepest']]]]
// Only change code above this line
];





  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0

Challenge: Basic Data Structures - Create complex multi-dimensional arrays

Link to the challenge:

Hi @cvfisher !

Welcome to the forum!

Your problem is here

Your missing something important between the elements.

Ahh I see knew it would be something small like that, thanks so much!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.