I'm sorry, but I do not see any connection between my question and your answer.
You wrote the following statement:
file_read >> country_name[20] >> happiness_values;
This statement is equivalent to the following two statements:
file_read >> country_name[20];
file_read >> happiness_values;
I am asking about the first of these two statements.
What were you trying to do when you wrote that statement?