```js client.guilds.cache.forEach(async (guild) => { let voiceChannels = guild.channels.cache.filter(channel => channel.type === 'voice'); voiceChannels.forEach(channel => { console.log(channel) }); })```