Reduce MathMath time! What gets logged? const arr = [ x => x * 1, x => x * 2, x => x * 3, x => x * 4 ]; console.log(arr.reduce((agg, el) => agg + el(agg), 1)); Select one:160100120Submit