Welcome to the Ranch!
As you probably already know,
Java is a statically typed language - all variables have a type, which is fixed at the moment you write your source code. You have declared the variable
month as an
int so it can contain only integer numbers. An assignment statement like
month = "January"; is not going to work, because you cannot assign a
string "January" to an
int variable. You'll have to create a different variable to hold the name of the month. You could for example call it
monthName and make it a String.