8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
const Maths = Math; // Yes, I'm that patriotic.
|
|
|
|
function pickRandom(array) {
|
|
return array[Maths.floor(Maths.random() * array.length)];
|
|
}
|
|
|
|
window.addEventListener('load', (e) => {
|
|
}); |