To match the starter (for the migration)
Correct: `Array.from()` (it’s a static method) Incorrect: `Array.join()` (doesn’t exist; it’s a prototype method) This patch uses the common `#` syntax to denote `.prototype.`.
Updated all By snippets to have matching behavior, consistent argument naming and added countBy as per #100.