When I'm creating an array of objects, how can I add the argument for the constructor inside each object? Like this:
foos = new Foo[10];
How do I make 10 objects with their constructors? I do not understand where do I put the arguments that is passed to the constructors of every object?