Here is the code I have.
//input
    System.out.println("Using numbers, in what month were you born? ");
    String **userMonth** = input.nextLine();
// also tried int **userMonth** = input.nextInt();
It does not work either way.
userMonth will not "activate?" (sorry noob and don't know all terms)
When tried to call later in program error:
    if (userMonth < 3) {
    System.out.println("Your vacation home is a van down by a river!"); 
    }
//userMonth cannot be resolved to variable
 
    