Hi.
I'm searching in the internet for information, examples for algorithms, that can randomly pick a value from a define list of values, I found several examples that can do random on a array but thru the index of the array, what I want is: based on the values in each position of the array the algorithm picks a random value in each iteration until there are no values in the array. Example
int[] array = new int[]{4,245,653,9,12,50}
A possible output for this could be
50,4,9,12,653,245
I don't know if I explain my self well enough, thanks for any help, code example, link to pseudocode, or any type of information