I have two lists like this:
list_a = ["Orange", "Kiwi", "Apple", "Orange"]
list_b = ["sweet", "bitter", "nice", "good for skin"]
How to concatenate the two lists to become like this:
list_c = ["Orange", "sweet", "Kiwi", "bitter", "Apple", "nice", "Orange", "good for skin"]
What I got is just adding the last element.