ruby
class Contact < Struct.new(:name, :age, :pronouns, :face, 
                           :links, :emails, :location, :phone)
    def initialize(
        name = "Zebadiah Long", 
        age = 1231230140,	# In seconds
        pronouns = "he/him",
        face = , 
        links = [
	    "noblewhale.com",  	# Business site 
	    "AnsonKindred",    	# Github 
	    "Noble Whale",     	# Business Github 
	    "zeblong",         	# LinkedIn 
	    "AnsonKindred",    	# Steam 
	    "Resume"          	# Resume 
        ],
        emails = [
            "thegreatzebadiah@gmail.com",
            "zeb@noblewhale.com"
        ],
        location = "Athens, GA. USA",
        phone = 7062014294 
    );
        super 
    end
end