I have an array that is called like this:
$array = array("one" => "x", "two" => "y", three => "z");
Now I want to randomize the array so I used shuffle, however it then changes the id to like, 0, 1, 2. I do not want this to happen, I want the id to stay the same. Is there a function that can do this? If so what function otherwise, how can I do this?