Oh no!

Seems like you got that wrong.

const foo = [13, 45, 3];
function bar(elem, i) {
   const baz = elem + i;
   if (baz % 2 == 0) {
     return bar(baz, i + 1);
   }
   return elem - 1;
}
const code = foo.map(bar).join("");
open("https://dintero.com/careers/" + code);