I was tasked with combining two lists with different lengths to a single list and I'm confused? would it be this simple, or am I missing something. I used these two list as examples. I need to do it with a function.
def appArray(x,y):
   List1=[1,2]
   List2=[4,5,6]
   C= List1 + List2
    return C
print (C)
 
    