Life of the Party Calculator

<!DOCTYPE html>
<html>
<body>

<h1>Life of the Party Calculator</h1>


<p id="lop"></p>

<script>
// Life of the Party Bronze numbers
let x = 5;
// Life of the Party Silver numbers
let y = 2;
// Life of the Party Gold numbers
let z = x + y;
// Display z
document.getElementById("lop").innerHTML = "Your current Life of the party rank is: " + z;
</script>

</body>
</html>