I'm trying to make this audio file play once the users scroll position is above 1500. The code works, as the console logs 'Hej' but it does not play the audio file
// Audio
let crowd = new Audio('../Media/Audio/Crowd.mp3');
window.addEventListener("scroll", function() {
var scroll = this.scrollY;
if (scroll > 1500) {
crowd.play(crowd);
console.log('hej');
}
})