Write a JavaScript program to display multiline alert message
<html>
<head>
<title>Alert message w/ paragraph breaks</title>
</head>
<body>
<script>
window.alert("Hello World!\n\n\nThanks for visiting!\n\n\nGoodbye!")
</script>
</body>
</html>
