How to move multiple Ai Agents to an array of locations

I have an array of vector locations that I’m trying to push to a blackboard, so that each of my n Ai agents will get their own location from the array (based on index number) and move to that location. The trouble I’m having is that all of the agents pull the same vector from the array, and therefore go to the same spot, instead of distributing out over every location in the array.

(a bit more info here: https://answers.unrealengine.com/questions/666089/move-ai-agents-to-array-of-locations.html)

Is there a way to store an array of value in a blackboard key, or maybe a different more efficient way to do what I’m trying to do?