Java - Static Keyword
Identify the error in this code snippet:
class Example {
static void display() {
System.out.println(message);
}
String message = "Hello";
public static void main(String[] args) {
display();
}
}