ID:179817
 
OK I never really understood loops but how do you make a block of code repeat itself over and over again?
you look up for() in the reference, then stare at the code and read it over and over until it makes sense to you. That's what I did.

for()
//whatever

That will repeat itself continually until it does something that returns out of it, or breaks out of it one way or another...