Write a function named MixUpVectors that: . Takes two integer vectors (containing the same number of elements) as parameters . Returns an integer vector that is made up by alternating elements from both vectors . For example, e If two vectors have (1, 3, 5,7, 9) and (2,4, 6,8, 10) respectively, the result vector will have (1,2,3,4,5,6,7,8,9, 10) LAB Show transcribed image text Write a function named MixUpVectors that: . Takes two integer vectors (containing the same number of
OR
OR