Subscribe on createContainer with lopp

Can I do a loop and subscribe me to specific users?
Here is what i need to do:


export default createContainer( ( {params} ) => {

  return {
  params.customers.map((customer)=>{
    users: Meteor.users.find({customer.id}).fetch()
 });

  };
}, ListCustomers);