Javascript Array random(n = 1)
Array.prototype.random = function (n = 1) { if (n === 0) return undefined; const res = this.sort(() => 0.5 - Math.random()).slice(0, n); return n === 1 ? res[0] : res; };