1const pokemonContainer = document.getElementById('pokemonContainer');
2
3pokemonContainer.innerHTML += `
4<div>
5 <section class="all-comments"></section>
6</div>
7`;
8
9const allComments = document.querySelector('.all-comments');
10allComments.appendChild('Hello World');