Given a list of lists, return a single list, containing all of the elements in the list of lists. The elements of the lists can be of any type.
Sample Run
given_list = [[42,'bottles'], ['of','water','on','the'], ['wall']]
new_list = [42, 'bottles', 'of', 'water', 'on' , 'the', 'wall']
I sort of got my code to work but unlike this sample run I would like the user to enter 2 things for 3 lists and then add those three lists all into one. While keeping those spate lists in the given_list how do I put them all into one big list for new_list?