js select random of array code example
Example 1: javascript get random array value
//get random value from array
var colors = ["red","blue","green","yellow"];
var randColor = colors[Math.floor(Math.random() * colors.length)];
Example 2: get random element from array js
var item = items[Math.floor(Math.random() * items.length)];