Are you asking about step 1 of section 5? I believe it's intentional that that step doesn't compile; that's why there's no preview associated with it. And the next step says "Complete the list by…".
Yes, that's the step. I thought I was getting an error even when I had something in the block, after the second step, but maybe not. This beta of Xcode is still doing some weird things.
I think I was only getting that error when I had another error within the closure block below it. The problem is that a bug in the compiler causes it to report the error there, at the top of the block, even if the real error is 50 lines later. So both the error location and message are completely misleading. This and some other issues with runtime layout bugs, and lack of documentation, led me to abandon SwiftUI for now.
this drove me insane. thank you for the hint with the well-known-wrong error-messages.
Somehow XCode created a List { ... } around my List(...) { ... }, what I didn't realize on the first hundred sights... 8-)