now I have an object like let x = {};
what I wanna do is to be able to result in something like
{'1':[obj,obj,obj], '2':[obj,obj]}
so what I do is x[id] = [obj]
cause here I receive an object but I wanna produce an array of objects with concat to result like the example I mentioned.
SO, here is the problem it overrides the array of objects every time how I can concat here ??