(Choose 1 answer)
46/50-CAP
A developer has a list of popular cat names as follows: cat_names=np.array(["Felix", "Garfield", "Snowball"]).The list needs to be updated to remove "Felix" from the first spot and introduce the new name "Oreo". What code will replace "Felix" with "Oreo"?
A. cat_names[1] = "Oreo"
B. cat_names[0] = "Oreo"
C. cat_names["Felix"] = "Oreo"
D. cat_names mv "Felix" "Oreo"