Use function to create asynchronous chunks of data ```js lineup(function(done) { setTimeout(() => { done(null, 'whaaaat') }, 3000) }) ```
Use function to create asynchronous chunks of data