A normal for loop takes the following form

for(declaration; condition; step)

or

for(int i = 0; i < 5; i++)


How would you make the item loop 6 times, 7, 8, 9? What part of the for loop...