class Primate < Person
def initialize
@name = 'Ashish Negi'
@age = 26
@work = [ 'Infosys', 'SevenBits', 'BunnyfiedLabs']
@hobbies = [ 'Swimming', 'Chess', 'Moba Games' ]
end
def current_location
'Mumbai, MH, India'
end
def Looking_for_locations
['Washington, D.C.', 'Virginia']
end
def currently
{
studying: [ '3 JS' ],
workingOn: [ 'GiftBox','Cookie High', 'BattlePugs' ],
}
end
end