Accessing the values in an array directly still requires you to access and process each value individually. So, where is the value in using an array? The key is in the array index. This is a numeric value that can be calculated rather than directly coded.
Watch the following video to see how to use expressions to calculate the index used to access each element of the array. See how you can use a loop to reduce the code needed to process your array, taking the same amount of code regardless of the number of elements in it.
Have a go at converting the code you have to make use of loops to interact with all elements of the array. Try doing this with a while loop and a for loop.