// Add here the messages you want to be displayed.
const messages = ["Message1", "Message2", "Message3", "Message4"]
const randomMessage = messages[Math.floor(Math.random() * messages.length)];
// The message will log into the console!
console.log(randomMessage)
module.exports = {
name: 'random',
description: 'random?',
execute(message, args){
// Now the randomMessage will be recalculated every time the command is run
const randomMessage = messages[Math.floor(Math.random() * messages.length)];
message.channel.send(randomMessage);
}
}