How to add a reusable component to print a unique name for any actor?

Hey I need to be able to quickly add a reusable component to any actor and have a print out a custom string per actor on mouse over.
I currently have an actor component with a name variable:

when I attach it to an actor I can change the name, but if I have duplicate actors they cant have a unique name.
Is there anything im missing or is this just the wrong way to go about it?

but if I have duplicate actors they
cant have a unique name.

If this is the component:

Once it’s added to an actor:

Now each actor class with this component can modify that component’s variable. This will also work in the world:

Is there anything that you’re doing differently?

Wow I feel stupid, of course you just set it in the world… Thank you so much, so appreciated.