Holen Sie sich einen zufälligen Wert von einem Array in JS

const randomElement = array[Math.floor(Math.random() * array.length)];
Gifted Gorilla