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