SyntaxFix
Write A Post
Hire A Developer
Questions
https://kotlinlang.org/docs/reference/collections.html
According to above link List<E> is immutable in Kotlin. However this would work:
var list2 = ArrayList<String>() list2.removeAt(1)