'Declaration Or Statment expected Javascript/Discord.js

So Im coding in javascript a discord bot and then what happens is i get an Declaration Or Statment expected error even if its not needed

const client = new Discord.Client({ intents: 32767 });

client.on("ready", () => {
    console.log("✔✔ online")
})

client.on("messageCreate", message => {
    const prefix = ">"
    if(!message.content.startsWith(prefix)) return;

    const messageArray = message.content.split(" ");
    const cmd = messageArray[0];
    const args = messageArray.slice(1);



    if (message.content === `${prefix}test`) {
        message.reply("Working")
    }

    if (cmd == `${prefix}kick`) {
        if(!args[0]) return message.reply("Please Mention Someone or Put That Persons ID or Put That Persons Username to Kick The User Out Of The Server!");
        const member = (message.mentions.members.first() || message.guild.members.cache.get(args[0]) || message.guild.members.cache.find(x => x.user.username.toLowerCase() === args.slice.join(" ") || x.user.username === args[0]));
        if(!message.member.permissions.has("KICK_MEMBERS")) return message.reply("Since When You Have a kick members perm" || "You need to have the kick permission perm to use this command");
});

client.login("not showing token ");```


Solution 1:[1]

You have a wrong synatax. Your code should be

const client = new Discord.Client({ intents: 32767 });

client.on("ready", () => {
    console.log("?? online")
})

client.on("messageCreate", message => {
    const prefix = ">"
    if(!message.content.startsWith(prefix)) return;

    const messageArray = message.content.split(" ");
    const cmd = messageArray[0];
    const args = messageArray.slice(1);



    if (message.content === `${prefix}test`) {
        message.reply("Working")
    }

    if (cmd == `${prefix}kick`) {
        if(!args[0]) return message.reply("Please Mention Someone or Put That Persons ID or Put That Persons Username to Kick The User Out Of The Server!");
        const member = (message.mentions.members.first() || message.guild.members.cache.get(args[0]) || message.guild.members.cache.find(x => x.user.username.toLowerCase() === args.slice.join(" ") || x.user.username === args[0]));
        if(!message.member.permissions.has("KICK_MEMBERS")) return message.reply("Since When You Have a kick members perm" || "You need to have the kick permission perm to use this command");
};
});

client.login("not showing token ");

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 That Dude