The for loop of the reduction (line 132) in the nelderMead function is currently: `for (i = 1; i < simplex.length; ++i) {` However, it should include a let statement such as: `for (let i = 1; i < simplex.length; ++i) {`