xxxxxxxxxx
// If you work locally, it is common that you have several windows of your project open
// and so it sends you the sound several times on all your windows
// play audio with path
const audio = new Audio("./myAudio.mp3");
audio.play()
//play audio with html audio element
document.getElementById('myAudioId').play()