Create a function that takes an array of items and checks if the last item matches the rest of the array concatenated together.
matchLastItem(["i", "love", "tesh", "ilovetesh"]) ➞ true
// The last item is the rest joined.
*
matchLastItem(["i", "am", "into", "her", "world", "iamintoherworld"]) ➞ true
// The last item is the rest joined.
matchLastItem(["1", "1", "1", "11"]) ➞ false
// The last item should be "111".
matchLastItem(["12", "13", "17", "19", "20", "40", "121317192040"]) ➞ trueThe array is always filled with items.