MCQ
How many times does the loop for (let i = 0; i < 5; i++) run?
Explanation
The loop runs for i = 0, 1, 2, 3, 4, so its body executes 5 times.