So I have an array of values:
dht = new int[] { 41, 68, 77, 74, 74, 68, 88 };

And I want to return the index/of the position of the highest number. In this case 88.
I understand it is in the 6th...