Generieren Sie 12 Zufallszahlen Python

#Array containing 12 random integers from 0 to 100
data = np.random.randint(100,size=(12))
print(data)
M.U