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

(1 point)
Responses

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)

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 in this case is:

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