The for loop is a very popular type of loop. It has 3 parts: the value, the condition, and a way to change the value.

Sweet! $i starts at 0 and increases as long as the condition is true. Once it returns false, the loop stops.

Psst: $i++ is an even shorter version of $i += 1.

Might it be that the for loop uses the for keyword?