Javascript Array getRandomValue()
getRandomValue()
Array.prototype.getRandomValue = function () { return this[Math.floor(Math.random() * this.length)]; }