So I'm doing an automated response command but I need to to respond with more than one line. (I use node.js/discord.js? and I'm coding a Discord bot) Can somebody let me know what I would need to do make it more than one line? The following is what I have at the moment.
client.on('message', msg => {
if (msg.content === '<response trigger>') {
msg.channel.send('<Where the response would go>');
}
});