adotsbartley62801 adotsbartley62801 20-05-2022 Computers and Technology contestada What will be the value of the variable list2 after the following code executes? list1 = [1, 2, 3] list2 = [] for element in list1: list2.append(element) list1 = [4, 5, 6]