I am trying to add in a program where I would type "Yes or No" for the answer, but I can't get it to work, I know how to get number answers to work, with something likeBut when I try to make it to where I use Word answers instead and it won't work, This is the best I've gotten so far,Scanner keyboard = new Scanner(System.in); System.out.println("Pick a number 1 - 10:"); int WinnerPoints; WinnerPoints = 0; System.out.println("Your current amount of Points is " + WinnerPoints); int numberPicked = keyboard.nextInt(); switch (numberPicked) { case 1: case 2: case 3: case 4: case 5: case 6: case 8: case 9: case 10: System.out.println("Sorry, you lost :("); System.out.println("Good Bye!"); System.exit(0); break; case 7: System.out.println("YAY! You Won!"); WinnerPoints = 0+5; System.out.println("Welcome to level 2!"); break;But my IDE says thatScanner keyboard = new Scanner(System.in); System.out.println("Hello and welcome to my JAVA program, Math Test!"); System.out.println("This Test will be over: Addition"); System.out.println("Are You Ready to go?"); System.out.println("Yes or No?"); String yes_or_no = keyboard.nextLine(); switch (yes_or_no) { case Yes: } } }What do I do to get words activate something?Cannot switch on a value of type String. Only convertible int values or enum constants are permitted Yes cannot be resolved to a variable