; in this example. ; we have a for, next loop. ; $i is the variable. ; this variable starts at equal 5, and counts towards 1, with a count step of negative 1. For $i = 5 to 1 Step -1 MsgBox(0, "Count down!", $i) ; a message box displays the value of $i. Next ; next returns to the for to create the for/next loop. MsgBox(0,"", "Blast Off!") ; when the variable $i reaches the value of 1, the loop is exited. ;then the message box is display with, Blastoff!