javascript how to choose a random item between 2 variables 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)];