Cloning a vector with clone() is like making a shallow copy of the vector.
A new vector is created with each object reference copied from the original vector.
Similar to calling the Vector constructor that accepts a Collection.
All elements of the two vectors will effectively point to the same set of objects.