public class NameRepository implements Container{

    // List of names of people you want to look for their favorite book
    public String names[] = {"Jon","Jeff","Sam","Jessica"};

    // Contains an iterator
    @Override
    public Iterator getIterator(){
        return new NameIterator(names);
    }

}
