I want to to make a basic playbook using the -find module ----- but how do I get the names of the files returned ?

the example from expansible works great:

----- but how do I get the names of the files returned ?

# Recursively find /tmp files older than 2 days
- find:
    paths: "/tmp"
    age: "2d"
    recurse: yes

I do not get any results

----- but how do I get the names of the files returned ?

register:

https://stackoverflow.com/questions/41565614/ansible-how-to-register-output-from-find-module-and-use-in-other

Cheers,
Paul