In Matlab Code complete the following:
function bonusScores = CombineScores(numberScores, userScores)
% numberScores: Number of scores in array bonusScores
% bonusScores: User defined array of test scores

% Write a for loop that sets each array element in bonusScores to
% the sum of itself and the next element, except for the last element
% which stays the same
bonusScores = userScores;

end