Is it possible to choose a random element from one array and move it to another without the aid of ArrayLists/Collections etc (unless you can use shuffle on an array)? and making sure that element isn't selected again? I thought about setting it to null seems you cannot remove it but I'm unsure.
Basically i want myArray
to get shuffled or randomized and I figured the best way would be to pull them from one in a random order and add them to a new one...