Wow! You're going to have to show a little more effort than posting a link to a picture of your homework assignment. Post your attempt at a solution and ask specific questions about where you're stuck. No one is going to do your work for you.
The reason minimum is printing zero is because you initialize it to zero. Since zero is less than any value in the array, min remains zero. Initialize zero to the first value instead: int min = array2[0];
The average value is normally the sum of the values divided by the size, not the product.