You can also nest arrays within other arrays, like this: <code>[["Bulls", 23], ["White Sox", 45]]</code>. This is also called a <dfn>Multi-dimensional Array<dfn>.
</section>
## Instructions
<sectionid='instructions'>
Create a nested array called <code>myArray</code>.
- text: <code>myArray</code> should have at least one array nested within another array.
testString: 'assert(Array.isArray(myArray) && myArray.some(Array.isArray), ''<code>myArray</code> should have at least one array nested within another array.'');'