I have a list of domains, and for each domain item in that list I would like to get a random number. The sticking point is I’d like a different random number even if the same domain happens several times on the list. The list is generated parametrically to position several items, this means I don’t know ahead of time how many different domains I’ll end up with.
The thing is that whether I graft a tree or use a flat list, each domain gets the same random number. What I’d like is a random number for each line.
For example, for each of the domains that are 21 to -21, I’d like to have random number. Currently it gives me the same random number for all the 21 to -21 domains. Is there an efficient way to do this or do I have somehow figure out how to split up the domains as they come in and re-assemble the list?
Here is a screenshot of the current output