// NOTE: This wont work without a proper index and command handler! If you're interested in implementing this code, I'd suggest watching WornOffKeys's tutorials on getting started and a basic command handler! command(client, 'lucky', message => { var randomIndex = Math.floor(Math.random() * 100) const Embed = new Discord.MessageEmbed() .setTitle('Lucky Number!') .setDescription(`Your Lucky Number is...\n**${randomIndex}**!!`) .setAuthor("Bot created by Bqre#0001", 'https://i.imgur.com/trvzFSz.png') .setColor(3426654) message.channel.send(Embed) })