What does the following code snippet return?
String text = "Java"; System.out.println(text.matches("J[^o]va"));
true
Null
false
Error