Function getArr(arr){
var key = math . round(math . random()*(arr . length- 1));
Return arr.splice (key,1); //Every time you draw one, you really take it out of the array. If there is one symbol missing from the array, it won't be repeated.
}
alert(getArr(arr)[0]);
alert(getArr(arr)[0]);
alert(getArr(arr)[0]);