Which of the following statements will add a new item to the end of a list named "marbles"?

Select one:

a.
marbles.append("yellow")

b.
marbles[] = yellow

c.
marbles.pop("yellow")

d.
marbles.add("yellow")

a. marbles.append("yellow")