#include #include "genericList.h" using namespace std; int main() { GenericList intList(5); for (int i = 5; i >= 1; i--) { intList.add(i); } cout << "The integer list looks like:\n" << intList; GenericList stringList(3); stringList.add("Jack"); stringList.add("B."); stringList.add("Nimble"); cout << "The string list looks like:\n" << stringList; return 0; }