View randomchoice.js
function randomChoice(arr) { | |
return arr[Math.floor(Math.random() * arr.length)]; | |
} |