Why the output printed multiple times

function sayHello1()
{
console.log(“Hello !”)
}
console.log(“And the wait time starts…”)
setTimeout(sayHello1, 1000)
//setTimeout(sayHello1, 1000)
//setTimeout(sayHello1, 1000)
//setTimeout(sayHello1, 1000)

When I run the above function, The output Hello! printed 5 times. Why it printed 5 times as I have initialized the setTimeout function only once.

Not happening on my end: https://onecompiler.com/javascript/3ws2e2pjc

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.