Add a Property to an Object
Complete the addCountry function so that it adds a new property
country
to the given object, assigning it the provided value. Use dot notation to add the property. The function should not return anything — it should modify the object directly.
JavaScript
Console