[js: array shuffle] #js
let result = [0, 1, 2, 3, 4, 5].sort(() => { /* Shuffle */ return Math.random() - .5 }) console.log(result[0]) // まぁ、大体ランダム。