Java - Static Keyword
Identify the problem in this code:
class Example {
static int number;
void setNumber(int number) {
this.number = number;
}
}