Consider the following function which takes an array as input and returns a single numeric value as output. You may assume that all array values are small enough that they can be stored in a typical integer data type.

def return_first(myArray):
    return myArray[0]


How many operations must be completed when the function is run with myArray = [34, 54, 82, 29, 91, 74]?