/** * Note: JavaScript file for the Add an Element challenge in chapter 5 - the DOM */ const content = ` `; const header = document.querySelector(".header"); const nav = document.createElement("nav"); nav.innerHTML = content; header.append(nav);