Définissez la fonction pour obtenir une valeur aléatoire à partir du tableau

const randomValue = (list) => {
    return list[Math.floor(Math.random() * list.length)];
};
Lively Ladybird