How to run the timeline in a foreachloop?

I tried to moving location of actors by using timeline. When I was running the foreachloop before my timeline, the foreachloop ran for current times,but my timeline only finished once.

You can’t run a Timeline more times. In the background it’s only one instance that can be started and stopped.

Use the for each loop to move all actors after timeline updates. (foreach loop connected to Update-execution of the timeline)
In other words, every time this one timeline updates, it’s new value can be used on all actors.