public static final String[] suits =
{ "Clubs", "Diamonds", "Hearts", "Spades" };
public static final String[] ranks =
{ "narf", "Ace", "2", "3", "4", "5", "6", "7", "8",
"9", "10", "Jack", "Queen", "King" };
Recall that both global variables and instance variables are declared at the beginning of the class definition, outside of any method, and that you can identify global variables by the presence of the keyword static (and instance variables by its absence).
Given all that, why is the first element of the ranks array "narf"?