Node.js examples for Array:Random Array
Get random value from Array
Array.prototype.random = function() { return this[Math.random()*this.length|0]; }