Which of these is a correct way to start a for loop?

for ($i = 0; $i < 10; $i++)for ($numbers as $number)while (true)

Nice! We start with the for and provide a value, a condition, and a way to make the condition return false at some point.

Whoops. We start with the for and provide a value, a condition, and a way to make the condition return false at some point.