Buenas noches a todos les comparto mi solución:
<!DOCTYPE html>
<html lang="en">
<head>
<title>imc-ejercicio</title>
</head>
<body>
<script>
function calcularImc(peso, altura, nombre) {
imc = Math.round(peso / (altura * altura));
imprimirImc(imc, nombre);
}
function imprimirImc(imc, nombre) {
document.write("El IMC de " + nombre + " es " + imc);
}
var peso = 84;
var altura = 1.78;
var nombre = "Mauricio"
calcularImc(peso, altura, nombre);
</script>
</body>
</html>