Add a constructor to the LinkedBag class that creates a bag from a given array of objects.
a) public LinkedBag(T items, int numberOfItems)
b) public LinkedBag(T array, int size)
c) public LinkedBag(T items, int n)
d) public LinkedBag(T objects, int length)