the length for both the lists is the same, so we do the for loop to find the num index for each list, then we append it into the empty list:
if you need to append each element at a time, you need to append at a time under for loop such that you do
newList.append(list1[num]) then newList.append(list2[num])
rather than adding them up.