Introduction to Objects
Create an object called
myCountryfor a country of your choice, containing propertiescountry,capital,language,populationandneighbours(an array like we used in previous assignments).
const myCountry = {
country: 'Finland',
capital: 'Helsinki',
language: 'finnish',
population: 6,
neighbours: ['Norway', 'Sweden', 'Russia']
};