const greetingElement = document.createElement('div'); const greetingContent = document.createTextNode('Hi there. Time to create the future!'); greetingElement.appendChild(greetingContent); const pageReference = document.getElementById('app'); document.body.insertBefore(greetingElement, pageReference);