UNPKG

indonesian-names

Version:
12 lines (10 loc) 280 B
function getRandomElement(array) { if (!Array.isArray(array) || array.length === 0) { throw new Error('Expected a non-empty array'); } const index = Math.floor(Math.random() * array.length); return array[index]; } module.exports = { getRandomElement, };