Vectors
A vector can also be initialized to hold n number of a same element. For example:
// This creates a vector called smurfs containing {"Smurf", "Smurf", "Smurf", "Smurf", "Smurf"}.
std::vector<std::string> smurfs(5, "Smurf");
// This creates a vector called scores containing {88.8, 88.8, 88.8}.
std::vector<double> scores(3, 88.8);
// This creates a vector called balances containing {0, 0, 0, 0}
// This is because in a vector integers are initialized to 0.
std::vector<int> balances(4);
Your task is to create a vector called temmie_village_residents
and initialize it to contain 4 "Temmie" on line number 8.