Given the following documents in a collection:
{_id:1, a: “one”, b: “two”}
{_id:2, a: “two”, b: “three”}
{_id:3, a: “one”, b: “four”, c: “three”}
Using the following update command:
db.coll.replaceOne({a: “one”}, {d: “two”, b: “five”})
What would the contents of the collection be after successfully running this command?