GMJMACHALA07 GMJMACHALA07 12-12-2022 Physics contestada function test(name, birth_year, current_year) { const age = current_year - birth_year; const response = name + " is " + age; return response; }