Here is what I have so far:
   public class Player {
    private String playerName;
    private double playerScore;
    public Player(String name){
       playerName = name;
    }
    public String getName() {
        return playerName;
    }
    public void setName(String name){
        playerName = name;
    }
    public double getScore(){
        return playerScore;
    }
    public void setScore(double name){
        playerScore = name;
    }
public static void playerArray(ArrayList<Player> arrayPlayerScores){
    for (int i = 0; i < Player.length; i++){
    }
}
I am trying to write a Java method that takes an ArrayList of Player objects (from above) and sets each of the Player score instance variables to a random value between 1 and 100
 
     
     
    