Which line of code will correctly create an array? (Assume numpy has already been imported.)

myScores = numpy.array([98, 87, 89, 92])
myScores = numpy.array(98, 87, 89, 92)
myScores = numpy.array[(98, 87, 89, 92)]
myScores = numpy.array(98, 87, 89, 92}

The correct line of code to create an array using numpy is:

myScores = numpy.array([98, 87, 89, 92])