--- id: cf1111c1c11feddfaeb7bdef title: Nest one Array within Another Array challengeType: 1 --- ## Description
You can also nest arrays within other arrays, like this: [["Bulls", 23], ["White Sox", 45]]. This is also called a Multi-dimensional Array.
## Instructions
Create a nested array called myArray.
## Tests
```yml tests: - text: myArray should have at least one array nested within another 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 if(typeof myArray !== "undefined"){(function(){return myArray;})();} ```
## Solution
```js var myArray = [[1,2,3]]; ```