iOS dev question: What built-in collection do you use for quickly mocking up a list of data? Normally I use `UIFont.familyNames` but wondering if there’s something else y’all prefer.
The context being I want to quickly create a list and I don’t care what the data is. It just needs to be something long enough to scroll.
@samhenrigold (1…100).map { $0 }
But now that I know about family name from UIFont I might switch over.