public class Humans { 
    int legs; 
    int arms; 
    int eyes; 
    int nose; 
    int mouth; 
    String name; 
    String sex; 
    String horseName; 
    String whiskeyPreference; 

    public Humans() { 
        legs = 2; 
        arms = 2; 
        eyes = 2; 
        nose = 1; 
        mouth = 1; 
    } 
    public String whatIsYourName() { 
        return name; 
    } 
} 
