I have a fairly standard array:
["value","value","value"]
If I want to iterate through it, each list item needs a unique key. But how would I do this in this case?
JSONs often come with an id -but in this case I don't have any id's, and the values also aren't unique, so I cannot just use them as the key.
{someArray.map(object => {
return (<span key=???> {object} </span>); })}