how do i play audio with my discord bot?

i have this code
const { SlashCommandBuilder } = require('discord.js');
const { joinVoiceChannel } = require('@discordjs/voice');

module.exports = {
    data: new SlashCommandBuilder()
        .setName('play')
        .setDescription('Plays music'),
    async execute(interaction) {
        const guild = interaction.guild; 
        const member = interaction.member;

        // Check if the member is in a voice channel
        if (member.voice.channel) {
            interaction.reply('Joining: ' + member.voice.channel.name);
            // The member is in a voice channel
            const connection = joinVoiceChannel({
                channelId: member.voice.channel.id,
                guildId: guild.id,
                adapterCreator: guild.voiceAdapterCreator,
            });

            //use file: './sound/AAAAUUUGHHHH.mp3'

        } else {
            interaction.reply('You need to be in a voice channel to use this command!');
        }
    },
};
and i wanna play the file
'./sound/AAAAUUUGHHHH.mp3'
but i have no idea how i could do that please help me out
Was this page helpful?