Which of the following statements result in a dictionary without any key-value pairs?

numbers.Empty ();numbers.Clear ();numbers.Remove ("Ghostbusters");

Nice work! Clear () will clear out all the key-value pairs and Remove () will remove ´"Ghostbusters"`, the only key-value pair in the dictionary.

Oh noes! Clear () will clear out all the key-value pairs and Remove () will remove ´"Ghostbusters"`, the only key-value pair in the dictionary.