let s = ["du", "bist", "schwaine"];alert(s[Math.floor(Math.random() * 3)]); // 3 - значение диапазона от нуля, т.е будет 0, 1, 2
let s = ["du", "bist", "schwaine"]; alert(s[Math.floor(Math.random() * s.length)]);