If you have a for loop like this:
for(j = 0; j<=90; j++){}
It works fine. But when you have a for loop like this:
for(j
It's just a syntax error. You just have to replace j+3 by j=j+3 or j+=3.
j+3
j=j+3
j+=3