# import numpy library import numpy as np # define NumPy array cars = np.array(["Toyota", "Volkswagen", "Tesla", "Ford"]) # append the new cars into numpy array cars = np.append(cars, ["Chevrolet", "Jeep"]) # print the appended cars print(cars)