Most likely your problem is in this line:const cmd = message.split(");since you are not dividing by a space, if you do so:const cmd = message.split(' ');then everything should work
const cmd = message.split(");
const cmd = message.split(' ');