The while loop, another kind of loop, loops through a piece of code as long as a specific condition is true.

Sweet! We use the while keyword to create a while loop. As these loops don't have control variables, we need to make sure that the condition becomes false.

Might we need a keyword that's a little closer to the loop's name?