```js const { Client, GatewayIntentBits } = require('discord.js'); const client = new Client({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.MessageContent, GatewayIntentBits.GuildMessages] }); ``` How can i add all itents to be like : ```js const client = new Client({ intents: allIntents }); ``` Without adding every single intent manualy