1// Personal information2let name = 'Federico Tensi'3let profession = 'Software Engineer'4let location = 'Rome, Italy'56// Hobbies7let hobbies = [8'Coding', 'Eating food', 'Cars', 'More programming', 'Gym',9'Writing not so useful comments',■This is a good joke, look above the variable name...10];11
Developer