01 / 06
The number ends up as the star
To work through every item of an array, for had you write this.
for (let i = 0; i < list.length; i++) { ... }
What you want is "do the same thing to all of them", but what is written is mostly the business of looking after the number i. Start at 0, keep it under length, do not forget the i++. All easy to get wrong.
Would it not be easier to say "to all of them" without the number appearing?