Another option; you can use the Modulo (%) operator to determine if there's a remainder when dividing by two. If a number is evenly divisible by 2, it's even. If not, it's odd.
Set Index to 0
For Each Item in MyList:
:If (Index % 2) //Odd numbers return a value which equates to TRUE
:- Do What You Want With Odd Items
:Else //even numbers return a 0, which equates to FALSE
:- Do What You Want With Even Items
:Increment Index by 1