What object does the keyword this refer to in the example below?
let country = {
name: "Germany",
language: "german",
capital: {
name: "Berlin",
population: 3644826,
getPopulation() {
console.log(this.population);
}
}
};