Scanner scanner = new Scanner(System.in);
       String name = scanner.nextLine();
       int age = scanner.nextInt();


       System.out.println(name + " will conquer the world in " + age + " years. Mwa-ha-ha!");
The displayed text must fully match the task conditions. RECOMMENDATION FROM YOUR MENTOR Be sure that you haven't mixed up the order of reading in the name and number from the keyboard. Check the conditions.