function tocaSom (idElementoAudio) {
document.querySelector(idElementoAudio).play();
}
const listaDeteclas = document.querySelectorAll('.tecla');
let contador = 0;
while (contador < listaDeteclas.length) {
const tecla = listaDeteclas[contador];
const instrumento = tecla.classList[1];
// templete String
const idAudio = '#som_${instrumento}';
// console.log(idAudio);
tecla.onclick = function () {
tocaSom(idAudio);
}
contador = contador + 1;
console.log(contador);
}