iOS Swift - SwiftUI Layout
Identify the error in this SwiftUI code snippet:
ScrollView {
LazyVStack {
ForEach(0..<5) { i in
Text("Item \(i)")
}
}
}