//import Scanner public class Chatbot { public static void main(String[] args) { //See Learn the Part for the complete instructions. //set up scanner. System.out.println("Hello. What is your name?"); //Pick up user's name and store it. //add new a line before asking next question. System.out.println("Hi ! I'm Javabot. Where are you from?"); //Pick up user's home and store it. //add new a line before asking next question. System.out.println("I hear it's beautiful at ! I'm from a place called Oracle"); System.out.println("How old are you?"); //Pick up age and store it. //add new a line before asking next question. System.out.println("So you're , cool! I'm 400 years old."); System.out.println("This means I'm times older than you."); System.out.println("Enough about me. What's your favourite language? (just don't say Python)"); //Pick up language and store it. //add new a line here. System.out.println(", that's great! Nice chatting with you . I have to log off now. See ya!"); //close scanner. } }