Run method description: Write a return method named run that returns an integer. run takes in one parameter which is an array of integers named one. run will return the sum of all values less than 5 in the array one. The call run([3,4,5,6,7,8,9,-2]) would return 5.