Concept Flow - List creation (listOf, mutableListOf)
Start
Choose list type
listOf
Create immutable list
Return list object
Use list in code
End
You decide which list to create: an immutable list with listOf or a mutable list with mutableListOf. Then Kotlin creates the list and returns it for use.