1//Seperate Arguments
2let seperateArgs = args[0]; //0 being the first argument
3//Input "hello world"
4//Output "hello"
5
6//Full Arguments
7let fullArgs = args.slice(0).join(' ');
8//Input "hello world"
9//Output "hello world"
1const prefix = "!";
2const args = message.content.substring(prefix.length).split(" ")