Sequential Animation of Objects

Hello All, three.js newbie here. So if I have created a bunch objects in my Scene. say obj1 and obj2 and so on. Now if I want to translate them sequentially in different directions by a certain magnitude , meaning obj1 translated in X-Axis by 5 units followed by obj2, along Z-Axis by 3units and so on. What are the different ways in which this can be done. (Note that the direction and Magnitude as well as object to be translated will be decided during runtime.) And no code is available yet, Since I haven’t written any code and this idea is only at the back of my mind.

I would recommend starting with the Object3D documentation, using properties like .position and .scale.

Thanks a lot!