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
650 B
RESOURCES
-
Question mark user image: "http://www.clker.com/cliparts/F/g/8/N/k/X/black-question-mark-square-icon-md.png"
-
Shuffle function:
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;
}