function calculateBMI(height, weight) { return weight / height ** 2 } console.log(calculateBMI(1.8, 70))