static variables are class variables so, remove static
from variable declaration as :
private int age;
as per java docs :
Fields that have the static modifier in their declaration are called static fields or class variables. They are associated with the class, rather than with any object. Every instance of the class shares a class variable, which is in one fixed location in memory.