Problem Statement
List the two arguments that async.queue() takes as input.
Explanation
The async.queue() function takes a worker function (that processes tasks) and an optional concurrency limit. It allows you to process multiple tasks in parallel while controlling concurrency.