How can I get online members and members on the voices
I want to get online and voice active members in commands like this : I want for example if user use this command it sends the count of online and active members
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!'),
async execute(interaction) {
await interaction.reply('Pong!');
//log all online members
//show how many members are on the voices now
},
};