I have two list
l1= ["apple", "orange"]
l2 = ["red", green", "black", "blue"]
I want to create a list which appends both.
l3 = [["apple", "orange"], ["red", green", "black", "blue"]].
So the l3[0] =["apple", "orange"] and l3[1]=["red", green", "black", "blue"].
How do I do the above?