Select Random item from Array
function selectRandomArrayItem(array) { return array[Math.floor(Math.random() * array.length)]; }