Perfect! In the beginning, number has the value 1. In the loop's third execution, number increases to 4 and the loop stops.
number
1
4
Because of <=, the loop runs another time when it reaches the value 4.
<=