Array.prototype.random = function() { return this[Math.floor(this.length * Math.random())]; } module.exports = { randomArray: Array.prototype.random };