how to pick a random item in an array 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)];