Add console.log("Hi there!"); to the code block of the while loop by placing it between { and }.
console.log("Hi there!");
while
{
}
The order is while (true) {, console.log("Hi there!");, then }.
while (true) {