Welcome to Bubbl.es!

Would you like to learn a bit about the JS scope chain? If so,

function addOdds(...numbers) { // 1st block start
  var total = 0;
  for (let number of numbers) { // 2nd block start
    if (number % 2 !== 0) { // 3rd block start
      total += number;
    } // 3rd block end
  } // 2nd block end
  return total;
} // 1st block end