Coderslang_Master Won't i become 0 in each iteration, if it goes inside de while loop?
This time, I only re-arranged the helper.js file with minimal changes. I put the i inside the function and was able to submit it successfully.
export const myLoop = () => {
let i = 0;
while (i <= 99) {
console.log(i);
i++;
}
};