Any body fix code
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int choice = scanner.nextInt(); String[] categories = {"PCs", "Notebooks", "Tablets", "Phones", "Đccessories"}; if(choice<=4){ if(choice == 0){ System.out.println("PCs"); }else if (choice == 1){ System .out.println("Notebooks"); }else if (choice == 2){ System .out.println("Tablets"); }else if (choice == 3){ System .out.println("Phones"); }else if(choice ==4) { System .out.println("Accessories"); } } //complete the code try { if(choice >= 5) { throw new Exception("Invalid choice"); } } catch(Exception e) { System.out.println("Wrong Option"); }