//Print "HELLOWORLD"500 times using Node

for(var i = 0; i < 500; i++){
  console.log("HELLO WORLD!");
}

// Execute file with:

node filename.js