const teclas = document.querySelectorAll('.tecla');
const audios = document.querySelectorAll('.audio');
function tocaSom() {
for (let i = 0; i < teclas.length; i++) {
teclas[i].addEventListener('click', function(){
audios[i].play();
});
}
}
tocaSom();
eu poderia fazer desse jeito?