I have an array named X with 17 strings in it. For an example, It looks like this:

x(1) = birthday
x(2) = last name
x(3) = first name
x(4) = address
x(5) = state
x(6) = zip code
x(7) = city
etc.....

I want the order to be like this:

first name
last name
birthday
address
city
state
zip code

Programmaticaly, how can I sort the array to get it how I want? Is it possible to put my array X into another array and sort it?

If so , can you please show me how?

Thank you,

'tard