Здравствуйте , не могу понять в чем ошибка.
var weight = 5;
var length = 60;
var age = 5;
var activityRate = 1.725;
var calorieRate;
var proteins, fats , carbohydrates;
calorieRate = 88.362 + (13.397 * weight) + (4.799 * length) - (5.677 * age);
calorieRate = calorieRate * activityRate;
calorieRate = Math.round(calorieRate);
proteins = calorieRate * 40 / 100;
proteins = Math.round(proteins);
fats = calorieRate * 25 / 100;
fats = Math.round(fats);
carbohydrates = calorieRate * 65 / 100;
carbohydrates = Math.round(carbohydrates);