You're working with the two lists: LinkedList and ArrayList filled with String elements.
You need to implement the mergeLists method, that should
Add all elements from the
ArrayListto the end of theLinkedListPrint the new size of the
LinkedList, like this:The new size of LinkedList is 10Print the linked list using the following format:
[item1, item2, item3, item4]