Help me in solving JS20C problem

My issue

When I submitted the solution a pop-up came to my screen, did you append the element to the ID paragraph 1? after that I can’t submit the task or move to the next problem

My code

// Add the code below this line
// Step 1: Create a new element
var newpara = document.createElement('p');

// Step 2: Assign values/attributes and set the content
newpara.id = 'paragraph2';
newpara.innerHTML = 'Learn, Practice and Compete';

// Step 3: Add the element as child of an element in the DOM
document.body.appendChild(paragraph1);

Learning course: Web development using JavaScript
Problem Link: Modify and add elements using DOM in Web development using JavaScript