I had problems too, but I passed the task. Here my solution.
export const min = (a, b, c) => {
if (a <= b && a <= c) {
return a;
} else {
if (a >= b && b <= c) {
return b;
} else {
return c;
}
}
};
Greeting from Venezuela