Source: productOfOddNumbers.js

/**
 * Return the product of all odd numbers in an array. 
 * @param {number[]} nums - an array containing numbers
 * @returns {number} - product of all the odd numbers
 * 
 * ex: productOfOddNumbers([1, 2, 3, 4, 5])
 * returns 15
 */

 function productOfOddNumbers() {}

 module.exports = productOfOddNumbers