---
id: cf1111c1c11feddfaeb7bdef
title: Nest one Array within Another Array
challengeType: 1
isHidden: false
videoUrl: 'https://scrimba.com/c/crZQZf8'
forumTopicId: 18247
---
## Description
You can also nest arrays within other arrays, like below:
```js
[["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));
```
## Challenge Seed
```js
// Only change code below this line
var myArray = [];
```