<header> <h1>For alert</h1> </header> <body> <script> const names = ["John", "Paul", "George", "Ringo"]; for (let name of names) { alert(`Hello, ${name}`); } </script> </body>