- Implemented using Promise.all to run requests in parallel
- Preserves the order of results based on input URLs
- Maps successful responses to
{ 'Arnie Quote': message } - Maps failed responses to
{ FAILURE: message }
The solution is designed to be efficient and readable, following common JavaScript async patterns.
