Node.js examples for Array:Random Array
Random array element
Array.prototype.random = function() { return this[Math.floor(Math.random() * this.length)]; }