<title>prompt HTML</title>
var voornaam = prompt("Wat is je voornaam?");
var achternaam = prompt("Wat is je achternaam?");
var leeftijd = prompt("Wat is je leeftijd?");
document.write("Voornaam: " + voornaam);
document.write("<br>Achternaam: " + achternaam);
document.write("<br>Leeftijd: " + leeftijd);
document.write("<br>Hallo " + voornaam + " " + achternaam + ", u bent " + leeftijd + " jaar oud");