Help>Multiple Collision

Right now i am working on a game that requires collision between multiple object.
In fact there or 3 array.
Example: i have an array of 5 oranges. array of 6 apples. array of 12 bananas. array of 2 basket that can collect the fruit. lastly 1 object that the user can control.

how am I going to collide these 5 groups and makes them bounce off each other when it touches? i have tried using nested for loops and the game gets laggy as hell. hitTest() does not work well because the objects have random speed and direction.

thanks in advance.