/* Lesson 1 Coding Activity Question 1 */ import java.util.Scanner; public class U5_L1_Activity_One { /* Add the method myMethod here */ // You can uncomment and add to the main method to test your code // You will need to remove/comment out this method before checking your code for a score public static void myMethod() { System.out.println("I'm a void method!"); } }