javascript selecting random object from array code example
Example 1: get random element from array js
var item = items[Math.floor(Math.random() * items.length)];
Example 2: js random string from array
const randomElement = array[Math.floor(Math.random() * array.length)];