I want to take two lists and merge them together.
list1 = ['1', '2', '3', '4']
list2 = ['one', 'two', 'three', 'four']
Desired output:
[['1', 'one'],['2', 'two'],['3', 'three'],['four', 'four']]
I basically want to combine the elements of both lists in the order they start in their lists. I know the format of the output might seem wonky and is just there for a visual of what i want.