Question: Write a Bag class with a generic type. Write a class such as item that has a name and price.
Add objects of item to the bag and find the average and the total of the price of all items in the bag.
Ensure to have a toString and display the items in the bag as well. Test all the methods in the bag.
You need to write a class with generic type and find the average and the total of the price. Be sure to include comments.