<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PROMEDIO</title>
    <H1>PROMEDIO EDAD FAMILIA</H1>
</head>
<body>
</body>
<script>
    // Salto de linea
     function lineJump1() {
  document.write('<br>');
  document.write('<br>');
  document.write('<br>');
};
// Mostrar en pantalla
print = sentence => {
    document.write(`<big>  ${sentence} </big>`);
    lineJump1();
};
let numeroIntegrantes = parseInt(prompt('Ingrese el numero de integrantes'));
let contador = 1;
let totalEdades = 0;
while (contador <= numeroIntegrantes){
    edad = parseInt(prompt('Ingrese la edad del intengrante'));
    totalEdades = totalEdades + edad;
    contador++;
};
mediaEdades = totalEdades / numeroIntegrantes;
print(`La media de las edades de los integrantes es ${mediaEdades}`);
</script>
</html> 
            