Node.js examples for Array:Random Array
Returns a random element from the given array
randomElement = function (array) { return array[ random(0, array.length - 1) ]; }