Instructions
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Student Info Prompt</title>
</head>
<body>
<h1>Student Information</h1>
<p id="output"></p>
<script>
// Prompt the user for their name
let studentName = prompt("What is your name?");
// Prompt the user for their grade level
let gradeLevel = prompt("What is your grade level?");
// Create a message to display both inputs
let message = "Hello, " + studentName + "!<br>" +
"You are in grade " + gradeLevel + ".";
// Display the message on the webpage
document.getElementById("output").innerHTML = message;
</script>
</body>
</html>
The name of the file will be: PX_doubleJavascript_lastname