In the code below you have a function named sumTheArrays. It will receive an object with the following structure:
{
'even': [...],
'odd': [...]
}
Each array will have 5 integers in it. Your task is to sum each of the respective odd and even numbers by their index, and return the result in a single array of size 5.