module.exports = { randomArray: (arr) => { return arr[Math.floor(Math.random() * arr.length)] }, }