let fullName = prompt("Please enter your name :")
let surName = document.querySelector("#surName")
surName.innerHTML =`${surName.innerHTML}${surName}`
my piece of code is here and I'm getting an error like this. I can't import data into hmtl with inner.HTML and from prompt. What should I do ? Also index.html file
<h2 id="surName">Javascript Prompt</h2>