Fiz tudo igual como o Instrutor:
String textoDigitado = new Scanner(System.in).nextLine();
opcaoEscolhida = Integer.parseInt(textoDigitado);
Mas na hora de colocar o número para a operação desejada, acontece essa exceção:
java.lang.NumberFormatException: For input string: "" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) at java.base/java.lang.Integer.parseInt(Integer.java:675) at java.base/java.lang.Integer.parseInt(Integer.java:781) at br.com.alura.AdopetConsoleApplication.main(AdopetConsoleApplication.java:32)