You have a map variable, called "users", with the keys "name" and "age". Define an output list variable with the following "my name is {name} and my age is {age}"
Answer
output "name_and_age" {
value = [for name, age in var.users : "my name is ${name} and my age is ${age}"]
}