how to grab random items from an array jquery code example
Example: js random string from array
const randomElement = array[Math.floor(Math.random() * array.length)];
const randomElement = array[Math.floor(Math.random() * array.length)];