So I originally had this:
const getMean = (array) => {
const sum = array.reduce((acc, el) => el + acc);
}
And it told me it was incorrect. I changed it to acc + el and an explicit return and it was accepted. Does it matter for the reduce method which order they are in, or was this just an overlooked correct possibility?