Basándonos en la clase y la simplificación maxima del código hasta el momento presentada por el profesor, mi programa quedo asi:
<!DOCTYPE html>
<title>BMI2</title>
<head>
<meta charset="UTF-8">
</head>
<meta charset="UTF-8">
<html>
<script>
function saltarlinea() {
document.write("<br>");
document.write("<br>");
}
function print(text) {
document.write(text);
saltarlinea();
}
function imcpromedio(weight,high) {
return (weight / (high * high));
}
nameinfo = prompt("Ingrese su nombre: ")
weightinfo = prompt("Ingrese su peso: ")
highinfo = prompt("Ingrese su altura: ")
bminfo = imcpromedio(weightinfo,highinfo)
print (nameinfo +", su IMC es: " + bminfo)
</script>
</html>