Hi there. I’m stuck at the basic Javascript course part where I have to make a for loop. Code is apparently correct, but the console brings me the next error:
ChunkLoadError: Loading chunk 299 failed.
(error: https://www.freecodecamp.org/@babel/standalone-5c380485a36f8854f994.js)
I can’t continue because of that. The correct code I’ve done is this:
// Setup
const myArray = [];
// Only change code below this line
for (var i = 1; i < 6; i++) {
myArray.push(i);
}
I need help please. Thanks
the link to the of the challenge is this: