const { Client, Message, MessageEmbed } = require("discord.js"); module.exports = { name: "gg", timeout: 15000, run: async (client, message, args) => { const GG = [ "**GIT GUD**", "Git gud kid", "good game *question mark*", "gg l0ser", "delet cod gg", "*ggwp*", "I was lagging doe", "```Stop using this command```", " ez pz ", "", "**GOOD GAME WELL PLAYED**", " get rektd ", "", ]; const GGIndex = GG[Math.floor(Math.random() * GG.length)]; message.delete(); message.channel.send(`${GGIndex}`); }, };