xxxxxxxxxx
$('.btn').click(function() {
var audio = new Audio("sounds/" + $(this).attr('id') + ".mp3");
audio.play();
});
xxxxxxxxxx
$('.btn').click(function () {
let audio = new Audio('sounds/' + $(this).attr('id') + '.mp3');
audio.play();
}