An Assembly program

Write an Assembly program that will use a loop with indexed addressing to exchange every pair
of even number of values in an array of size 10 and array will consist ofinteger values. That is,
element i will exchange with element i+1 and element i+2 will exchange with element i+3 and so
on.
So if array has 10 22 30 43 45 34 89 67 33 66 then after exchange, array will be:

22 10 43 30 34 45 67 89 66 33