Hint: If you use an array method like forEach you always iterate over each and every array item. That can be exactly what you strive for, but it can also be unnecessary.
It may not be so important for arrays with a couple of items, but if they contain hundreds of thousands of items, we can save some execution time with more granular control over the iteration by using standard for loop.



