function sample(arr) { const randomIndex = Math.floor(Math.random() * arr.length); return arr[randomIndex]; } export { sample };