1. //for loop to create objects
  2. for (i=0;i<=9;i++){
  3. //call constructor, and name it the current value of i, then populate the object with 8 predetermined values
  4. Team i(array[i],0,0,0,0,0,0,0);
  5. }
  6.