Link Search Menu Expand Document

Nest one Array within Another Array

Summary

  • Arrays can be nested into other arrays.

Final Code

// Only change code below this line
var myArray = [["first nested array", 10], ["second nested array", 20]];