You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

650 B

RESOURCES

function shuffle(array) {
   var counter = array.length;
   while (counter > 0) {
       var index = Math.floor(Math.random() * counter);
       counter--;
       var temp = array[counter];
       array[counter] = array[index];
       array[index] = temp;
   }
   return array;
}