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.
count
0
1
false
If count is 4 in from the beginning, is the loop ever going to run with this condition?
4