below is the snippet which will give you the basic idea.
did not following the coding standards... it's a raw code.
Code:
a = Array("a","b","c")
i = 0
For x = ubound(a) to 0 Step-1
ReDim preserve b(i)
b(i) = a(x)
i= i+1
Next
msgbox "your array items" & join(a)
msgbox "Reservese items" &join(b)
Thanks,
SUpputuri
SUpputuri