A so-called while loop runs a block of code as long as a certain condition is true.

Yes! This while loop increases $number by 1 as long as it's less than 4. Once at 4, the condition turns false and the loop stops.

Might while be the keyword we need?