Did you notice I said that loops repeat themselves until a condition isn't met anymore?

This condition goes after the while keyword and can use any comparison or logical operator.

Sweet! We've told the loop to run while count isn't equal to 0 and are subtracting 1 from count in every iteration, until the condition is false.

If count is 4 in from the beginning, is the loop ever going to run with this condition?