public static int fiveOfaKind(int dice[]){
Obviously it is declaring a method but what I'm confused about is the part that goes "(int dice[])"
dice is an integer array that was declared in the main method.
What does that bit in the parenthesis do? And what is it called, I want to look it up and read about it.