For loop question Is there a way to start a for loop at +20 on first itteration?

BulldogLowell:
Using magic numbers... shame shame

the array is the better way, IMHO. any time you are using a global variable to traverse through a for-loop you need to be asking yourself "why."

Why, becasue I'm learning. I alreadu stated and array would be better. But why use an array if I can use write less code and accomplish the same thing with less code?

I'm going through the logic to see if it is possible.