Basic JavaScript: Manipulate Arrays With push() // Setupvar myArray = [["John", 23], ["cat", 2]];// Add a dog... ezmyArray.push(["dog",3]);