iOS Swift - Lists and Data Display
What will be the output of this SwiftUI code?
let fruits = ["Apple", "Banana", "Cherry"]
List(fruits, id: \.self) { fruit in
Text(fruit)
}