Получите случайное значение из массива в JS

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