[What am I doing wrong?] Create complex multi-dimensional arrays

Tell us what’s happening:
Describe your issue in detail here.

  **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
];

For some reason I do not pass the tests for this task.

I was forced to open the hint to compare what was wrong. And I did not see any differences, except for the double quotation marks.

What am I doing wrong?

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 YaBrowser/21.9.0.1044 Yowser/2.5 Safari/537.36

Challenge: Create complex multi-dimensional arrays

Link to the challenge:

Hi @MyBlood !

You are missing some commas .

You need to check in these areas.

2 Likes

Thank you so much! @jwilkins.oboe

1 Like

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