const args = message.content.slice(prefix.length[0]).trim().split(/ +/g); [2:05 PM] code example
Example: const args = message.content.slice(config.prefix.length).trim().split(/ +/g);
if (command === "asl") {
let age = args[0]; // Remember arrays are 0-based!.
let sex = args[1];
let location = args[2];
message.reply(`Hello ${message.author.username}, I see you're a ${age} year old ${sex} from ${location}. Wanna date?`);
}