What does Array.reduce do?
Walks through an array and reduces it into a single value. Number or string
What action should the callback function perform?
Examine the element, d computation on it and add it to the accumulated value. Updates the accumulated value depenedin on the current value
What should the callback function return?
returns the accumulated value
What is Array.reduce useful for?