Something is wrong with the lesson, i even added the tutorials solution which was the same with mine
Your code so far
// Setup
const myArray = [];
for (let i = 0; i < 5; i++) {
myArray.push([0, 1, 2, 3, 4]);
}
// Only change code below this line
for (var i = 1; i < 6; i++) {
myArray.push(i);
}
console.log(myArray);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Challenge Information:
Basic JavaScript - Iterate with JavaScript For Loops