Which of the statements can be used to update this key-value pair in d?

d["food"] = "pie"d.updateValue("pie", forKey: "food")d.updateValue("food", forKey: "pie")d[1] = "pie"

Good stuff! It's important to remember the difference between indices, keys and values.

Ouch! It's important to remember the difference between indices, keys and values.