What I mean is when someone wants a FOR loop to loop 5 times, 99 times out of 100, They'll make their code look like this:
FOR I=1 TO 5 [code goes here] NEXTWhen in reality, the value doesn't have to be I, so it could also be written like this:
FOR CATS=1 TO 5 [code goes here] NEXTThis is just really strange.