For - exclude a range of numbers

for (i=1; i<8; i++) {
}

this will give me from 1 to 7
…but if I need to exclude numbers from 3 to 5, how should I do?

i<3 and i>5 and i<8

:stuck_out_tongue: I’m messing up this…I’m sure…