Java beginner here. I have an array of objects and need to be able to change one part of a particular object. For example: "A", 95 change it to "A", 96
Grade [] grades = {
new Grade ("A", 95},
new Grade ("B", 90)
};
I have the Grade class with Grade constructor, gets and sets
Grade(letter, number);
I keep trying to code something in the main method and it tells me that I cat access get or set on an Array.