const newElement = document.createElement("h2");
newElement.textContent = "Some created title";
const titleElement = document.querySelector("body");
titleElement.appendChild(newElement);
for(let k=0; k<10; k++) {
const paragraphElement = document.createElement("p");
paragraphElement.textContent = "Paragraph "+k;
document.querySelector("body").appendChild(paragraphElement);
}