answer = PROD(matrix)
Returns the products of the rows of a matrix.
PROD([1,2;3,4]) = [3,8] PROD([1,2,3;4,5,6;7,8,9]) = [28, 80, 162]
pow2, cumprod