Hi, Does anyone have an idea why this code is not working ? Btw I also tried with && and still not working -->>> public class Solution { public static void main(String[] args) { checkSeason(12); checkSeason(4); checkSeason(7); checkSeason(10); } public static void checkSeason(int month) { //write your code here if (month < 3 || month > 11) { System.out.println("winter"); } else if (month < 6 || month > 2){ System.out.println("spring"); } else if (month < 9 || month > 5) { System.out.println("summer"); } else (month < 12 || month > 8) { System.out.println("autumn"); } } }