I get the error cannot find symbol - method method (int)
public class huh { public static void method1() { System.out.println("I wonder who wrote the book on love"); } public static void method1(int x) { for (i = 0; i < x; i++) System.out.println("I wonder who wrote the book on love") + i; } public static void main(String[] args) { int i; for (i = 0; i < 6; i++) { System.out.println(int i); method1(); method(i); } } }