int main()
{
const int GAMES = 5; //the max amount of games the person can enter
int num = 0;
vector<string> fav_games;
string favourite; // the game that the user enters
while (num<GAMES)
{
cout<<"Please enter one of your favourite games: \n";
cin>>favourite;
fav_games.push_back(favourite);
num++;
}
return 0;
}