1
1
mirror of https://gitlab.com/ceda_ei/Quadnite-Bot synced 2026-05-06 05:40:04 +02:00
Files
Quadnite-Bot/commands/random.js
2019-02-12 01:53:32 +05:30

6 lines
139 B
JavaScript

module.exports = (list = []) => (n = 1) =>
Array(n)
.fill(0)
.map(() => list[Math.floor(Math.random() * list.length)])
.join("\n");