I have two arrays. One contains numbers and the other contains strings. I want to do a
sortOn(DECENDING) for the number array and then have the string array sort to match.
if my string array is
string[0] = “morning”;
string[1] = “noon”;
string[2] = “night”;
number[0] = 3;
number[1] = 1;
number[2] = 2;
i’ll sort the number array and that’s fine. but can i apply that same sort to the string array?