I have seen that strings can be concatenated in Access with &.
However, I cannot write the following query:
SELECT age, &names ==> this line does not work, how can I concatenate the strings? 
    FROM table GROUP BY age;
So that I get for example: "30; JohnWilliamPeter", all of them 30 years old.
Any way to do that?