javaScript изменить текст абзаца

let element = document.getElementsByTagName("p");
element.innerText = "Hello World!";
Creepy Copperhead