Instructions
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple JavaScript Greeting</title>
</head>
<body>
<h1>Welcome to JavaScript!</h1>
<p id="message"></p>
<script>
// Ask for the user's name
let name = prompt("What is your name?");
// Create a greeting message
let greeting = "Hello, " + name + "! Welcome to JavaScript programming.";
// Display the message in the web page
document.getElementById("message").innerText = greeting;
</script>
</body>
</html>
The name of the file will be: PX_SimpleJavascript_lastname