* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, title, challengeType
| id | title | challengeType | 
|---|---|---|
| cf1111c1c11feddfaeb7bdef | Nest one Array within Another Array | 1 | 
Description
[["Bulls", 23], ["White Sox", 45]]. This is also called a Multi-dimensional Array.
Instructions
myArray.
Tests
tests:
  - 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.');
Challenge Seed
// Example
var ourArray = [["the universe", 42], ["everything", 101010]];
// Only change code below this line.
var myArray = [];
After Test
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
Solution
var myArray = [[1,2,3]];