Can I change the array index name?

image

I want to change the array index name shown in the picture to my custom name (enum Tooltips name or whatever).

ex)
index[0] => helloworld
index[1] => Nice

Is there a way to do this?

As mentioned here
Custom array item name in editor - Development / Programming & Scripting - Epic Developer Community Forums (unrealengine.com)

This could be achieved by the “TitleProperty” meta attribute

UPROPERTY(meta = (TitleProperty = "NameOfSomeMemberPropertyInFMyThing"))
TArray<FMyThing> MyArray;