package oobCentral;

import java.util.ArrayList;



/**
 *
 * @author Deven Pitcher
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
    
          NameGenerator  ng = new NameGenerator();
          ArrayList<Oob> oobList = new ArrayList<Oob>();

          int oobCount = 10;
          while(oobCount > 0){
             oobList.add(new Oob());
         oobCount--;
          }
          

          int i = oobList.size() -1 ;
          while(i >-1){
             
              oobList.get(i).oob_is_born(ng.createName());
              System.out.println(oobList.get(i).name);
               i--;
          }
        
    }//end main method

}//end main class