How is a forEach statement different from a for statement?
A for statement is generic, but a forEach statement can be used only with an array.
A forEach statement is generic, but a for statement can be used only with an array.
Only a for statement uses a callback function.
Only a forEach statement lets you specify your own iterator.