Assuming they are basic collections (which they don't look in the console window)
try: collectionA.add(collectionB.models)
If you are trying to add an array of objects to the collection, try the following:
_.each(kids.result, function(kid){ collectionA.add(new Backbone.Model(kid)); });
source
share