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