Mini-Exercise #3
v What does this code print?
Dim i As Integer
i = 10
Do While i <= 4
   Print i
   i = i + 1
loop