Constructor
The constructor is implicitly invoked when
an object of the class is formed:
int main() {
   list fun_videos;   implicitly calls the
     constructor
  list all_videos[10];  implicitly calls the
             constructor 10 times for
           each of the 10 objects!!