When using range(), the last number marks where the loop should stop. We don't use the last number in the range. 

Can you make this loop count to 3?

You're really good at this! Because the last number is not included in the range, we'll need to set 4 as the stopping point.

That would actually count to 2, because 3 is the last number and wouldn't make it in the loop.