const theorem = 'Pythagorean theorem'; const a = 5; const b = 8; const myString = 'Using *, we can work out that that if the two shortest sides of a right-angled triangle have lengths of * and *, the length of the hypotenuse is *.'; // Don't edit the code below here! section.innerHTML = ' '; const para1 = document.createElement('p'); para1.textContent = myString; section.appendChild(para1);