(1) List Exercises: (covers: operation, functions, slicing, and comprehension) \( 1.1 \) (10 points) Concatenate two lists: list1 = ['I', 'a', 'work', 'on'] list2 = [', ' \( m \) ', ing', 'HW2'] to ['1', 'am', 'working', 'on HW2] For this question, use list comprehension with the zip() function. The zip function takes two more iterables (like list, dict, string), aggregates them in a tuple, and returns its.