2.0 Arrays - Sum Of Two Arrays

what is the logic behind adding two arrays of different sizes ? not understanding the output format .

hey @neet1sha, consider the following explanation
Array1 = [1 0 2 9]
Array2 = [3 4 5 6 7]
So, let number1 = 1029 and number2 = 34567
Perform normal addition on number1 and number2, 1029+34567 = 35596
Return this new number to main and print in the given output format like 3, 5, 5, 9, 6, END.