Where in the world is the getBidValue(3) method (line 11)?
Looks like a typo to me where they're mixing getValue with getBidValue.
One of the answers say 'The output could contain @bf73fa'. What is that number?
That's that is the result of a toString call to the array. Better would be something like:
or a for-loop
Then Suits.SPADES.points can be accessed? So private members can be accessed by anything within the class, am I correct?
Yes they can, and since main is held within the class then private variables are accessible to the main method. Another perhaps more important question is:
should main try to access this directly?