I'm trying to play this sound link 5 times higher, but I can not:
document.getElementById("myaudio").volume = 5;
setTimeout(function(){document.getElementById("myaudio").play();},1);
setTimeout(function(){document.getElementById("myaudio").pause();document.getElementById("myaudio").currentTime = 0;},2000);
<audio id="myaudio">
<source src="https://www.elongsound.com/images/mp3/timbre_de_bicicleta_2.mp3" type="audio/mp3">
</audio>