<html lang="en">
<head>
<meta charset="UTF-8">
<title>Built-in functions</title>
</head>
<body>
<script>
let choice = confirm("Do you want to close the page?");
alert(choice);
</script>
</body>
</html>