To make the loop run as long as number is less than or equal to 3, we can use the <= signs.
number
3
<=
Nice! Now the loop still runs when number increases to 3.
Like when you say less than or equal to, start with < and then use the = sign.
<
=