Hello, when I press "Submit task" I get all "Details" wrong, but when I press "Run your code" the results show that at least objectives 1. and 2. are accomplished. Here are my files/code:
helper.js
export let i = 0;
export const myLoop = (m) => {
while (m < 100) {
console.log(m);
m++;
}
};
solution.js
import { myLoop, i } from './helper.js';
myLoop(i);