What do I have to return after the the if/else statement in my boolean method?
public class Hoofd { public static boolean getName(String x) { if(x == "jennifer") return true; else if(x == "ruurs") return false; return //what do i have to write here?; } }