My code is almost complete, however I am having an issue with the above stated test case. How can I fix it? package com.codegym.task.task02.task0217; /* Minimum of four numbers */ public class Solution { public static int min(int a, int b, int c, int d) { //write your code here int minNum = min(a,b); if (a < minNum){ return a; } else if (b < minNum){ return b; } else if (c < minNum){ return c; } else if (d < minNum){ return d; }else return minNum; } public static int min(int a, int b) { //write your code here int min1 = (a < b) ? a : b; return min1; } public static void main(String[] args) throws Exception { System.out.println(min(-20, -10)); System.out.println(min(-20, -10, -30, -40)); System.out.println(min(-20, -10, -30, 40)); System.out.println(min(-40, -10, -30, 40)); } }