0 / 60 seg.

What code inserts a new <div> element before an existing element with the ID existing?

<div id="existing">I am existing</div>
const newElement = document.createElement("div");
newElement.innerHTML = "New";
_____