How can you interact between 2 positions with the for flow?

I am trying to go thought an array every 2 positions. How is this possible in verse?

Example in Java:

for (int i = 0; i < 5; i = i+2) {
  Array[i];
}