else if(choice == 3){
System.out.println("what is your name? ");
String name = kb.nextLine();
boolean x = Member.checkMember(name);
System.out.println(x);
}
when i run this, it prints "what is your name?" and instead of waiting for me type in something, it just skips that part and go ahead and prints x. this code is inside a while loop.