Java - Static Keyword
Identify the error in the following Java code:
class Sample {
int number = 5;
static void printNumber() {
System.out.println(number);
}
public static void main(String[] args) {
printNumber();
}
}