Help me in solving JS20C problem

My issue

I’m getting this error: Did you create a an element of type ‘p’

My code

// Add the code below this line
var para = document.createElement('p');

para.id = 'paragraph2';

para.innerHTML = 'Best place to learn, practice and assess myself';

document.getElementById('paragraph1').appendChild(para);


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