I hit a bump when I\'m doing my Java code. I feel like I somehow got the concept messed up, like I not sure for this:
void setScore(float[] sco) { sco = scor
Check again how you set your score:
void setScore(float[] sco) { sco = score; }
What is sco? What you want to assign to what?
sco
You are assigning your local variable to the parameter. It should be the other way around. (this.score = sco)
(this.score = sco)