I learn loops in JavaScript with for-loop and I have this code (j) that does not work with me I don’t know why?
let start = 1;
let end = 6;
let breaker = 2;
for (let i = start; i <= end; i++) {
console.log(i);
for (let j = breaker; j <= end; i++) {
console.log(j);
}
}