Create a function named setInnerHTML, which accepts two parameters named element and innerHTML respectively, and set the passed innerHTML params to the innerHTML property of the given element. code example
Example: change innerhtml
document.getElementById("p1").innerHTML = "New text!";