You do not add Faces to the array.
p1.Age = 6
is an assignment, and it returns everything that was assigned to the variable / property (in this case 6).
You need to complete the tasks before placing Faces in an array.
If you only want to put items of the same type in a collection, you want to use a typed collection, not an atypical one. That would catch the problem right away.
Anon. source share