Make a many-to-many association
Goal
  - Add a many-to-many association such that
    
      - each Userobject has manyBlogPostobjects,
- each BlogPostobject has manyUserobjects, and
- the association has an association class, Favorite.
 
 
Steps
  - Add Favoriteclass:
- Add the association declaration:
    
      - Add User - BlogPostto specify a new association between theUserandBlogPostclasses.
- Add "user *"on theUserside to specify a multiplicity of*and a role name ofuser.
- Add "post *"on theBlogPostside to specify a multiplicity of*and a role name ofpost.
 
- Add the association class declaration:
    
      - Add (User, BlogPost)to specify that the association class will be on the preceding association between these classes.
- Add .. Favoriteon the end of the declaration to specify that theFavoriteclass will be the association class.
 
Reference Code
  - Many-to-many association code:
