I am running into the error (displayed in the image) whenever I run my ban command. Here is the code for the ban command: ```js
const guild = client.guilds.cache.get("940438220959789097");
const user = interaction.options.getMember("user");
const reason = interaction.options.getString("reason");
if(user.bannable){
guild.members.ban(user);
} else {
interaction.reply({
content: `${user.tag} is not Bannable!`,
ephemeral: true
})
}