What will be the output of the following Python Program? def addItem(list_Param): list_Param += [6] my_list = [1, 2, 3] addItem(my_list) print(len(my_list))