Array.fromAsync is the async version of Array.from. It takes async iterables, iterates them, and collects the results into an array.
Array.from is popular and only works for synchronous iterables. This fills the gap for asynchronous iterables.
Explainers: https://github.com/tc39/proposal-array-from-async