--- id: cf1111c1c11feddfaeb7bdef title: Nest one Array within Another Array challengeType: 1 videoUrl: '' localeTitle: Aninhar uma matriz dentro de outra matriz --- ## Description
Você também pode aninhar matrizes dentro de outras matrizes, como este: [["Bulls", 23], ["White Sox", 45]] . Isso também é chamado de matriz multidimensional .
## Instructions
Crie uma matriz aninhada chamada myArray .
## Tests
```yml tests: - text: myArray deve ter pelo menos um array aninhado em outro array. testString: 'assert(Array.isArray(myArray) && myArray.some(Array.isArray), "myArray should have at least one array nested within another array.");' ```
## Challenge Seed
```js // Example var ourArray = [["the universe", 42], ["everything", 101010]]; // Only change code below this line. var myArray = []; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```