Two Indexes in for Loop
<% for (int FIndex = 0, otherIndex = 0; FIndex <= 5; FIndex++, otherIndex = 2 + FIndex) { out.println("FIndex: " + FIndex + " otherIndex: " + otherIndex + "
"); } %>