Her is my code , it's not working and i can't find out why, please help
export const getBMICategory = (bmi) => {
if (bmi <= 18.5){
return 'Underweight';
}if ( 18.5 < bmi < 25) {
return "Normal weight";
}if ( bmi < 30) {
return "Overweight";
}if (bmi >= 30) {
return "Obesity";
}
}