Create function that accepts an array and it returns the summation of all the odd numbers in the array. If the array is empty, the function shall return -5 though, not 0
Eg input output
[] => -5
[34, 90, 2, 12] => 0, there was no any odd numbers in the given array
[3, 90, 5, 13, 8] => 21 ( 3 + 5 + 13)
function oddSummation(numbers) {
//body of the function goes here
}