forked from DebaucheryLibrarian/traxxx
6 lines
118 B
JavaScript
Executable File
6 lines
118 B
JavaScript
Executable File
function pickRandom(array) {
|
|
return array[Math.floor(Math.random() * array.length)];
|
|
}
|
|
|
|
module.exports = pickRandom;
|