Okay so I have to create an array, and later when I try to do something else it gives me an error. So when I run it through debug, I see competitors[null].
competitors is supposed to be an array of SportStacker objects, with a length of maxCompetitors. So, in my constructor, it takes maxCompetitors as an int.
SportStacker[] competitors = new SportStacker[maxCompetitors];
So why is my array competitors remaining null?