100% sure the divide is not working, I am only using very simple numbers right now. This makes me think I can't do it like this for some reason.
To test I changed the divide and tried adding another number or multiplying - nothing works, only the first part of the statement (adding the values in the array).
I tried:
MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4) /5
(MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4)) /5
(MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4) /5)
(MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4) /5)
(MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4) /(5))
MYArray.At(0) + MYArray.At(1) + MYArray.At(2) + MYArray.At(3) + MYArray.At(4) / MYArray.Width
Stuck.