so I came across a task that stumped me today..the one on calling methods..I didn't really see anything bout calling methods in the reading... I HATE using the "hint" button because I want to do it one my own..it didn't make sense but looked up calling methods on youtube..and think I understand now? a method is declaring/setting something in stone so you can refer back to it using a shortcut later on? like if you declare that multiply(int a, int b) means (a * b) In a method...anytime I use the word multiply followed by () I would get the answer?? like multiply(5, 10); public static void multiply(int a, int b){ System.out.println(a * b); } I feel bad if I can't do the tasks soon my own..is it okay to look things up???am I missing something?