I am trying to output a random sentence from a list and then output it as text. How do I do that? Currently I have this code:
if(message.content.startsWith('!')){
let sentenc = Array('Hello', 'Whats Up')
shuffle(sentenc)
messages.channel.send(sentenc)
}
But it doesn't work