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.

31 lines
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;
}
```
- **Raisin:**
"http://cdn.lifeinthefastlane.com/wp-content/uploads/2010/09/raisin.jpg"
- **Jim:**
"http://www.argylejournal.com/wp-content/uploads/2012/10/Jim-Ellinghausen-e1349993531939-150x150.jpg"