抽奖脚本是:
const users = [
"72D",
"a526796017",
"addou",
"aeiou520",
"Ai2You",
"bigjie910",
"BigBlackDick",
"busy0769",
"cc9910",
"chen22",
"chenchenze",
"CodeDAI",
"defunct9",
"eastern",
"efxy107",
"eurekawu",
"evtwbo",
"Exsi",
"falleaves",
"FX727",
"getName2573",
"goodidea1",
"GSZS",
"guoshanghui474",
"izyao",
"jamme",
"jibenmima",
"joyoner",
"Juake",
"kiroli",
"kmb1010",
"LieNoWell",
"lizuoqiang",
"muxiaofei",
"nailaojiang",
"NamelessRain",
"nebulaeric",
"no2cat",
"Ohhhhhhhh",
"oskzyi33",
"piggyMan",
"pingdog",
"rateltalk",
"root8",
"ruolis",
"sgf2013sdo",
"shenzhongkang",
"sktline",
"Softml",
"Soo0",
"stabc",
"sunyang",
"tangping",
"Vendettar",
"Vieufoux",
"x233333",
"xhxh",
"xuminzhong",
"yangtianming",
"ybchenjie805",
"yypro",
"Z2",
];
console.log(`参与抽奖用户数: ${users.length}`);
console.log("========== 抽奖结果 ==========");
const winner = users[Math.floor(Math.random() * users.length)];
console.log(`🎉 中奖用户: ${winner} 🎉`);