Question: How do I "unsort" an array?
I have an array of 25 numbers, sorted by ascending order. I want to take this same array, and sort it randomly. How?
Any ideas are appreciated...
shuffle($array);
Works. Thanks, bud. You rock.