How to initialize an empty ArrayList in Kotlin? [duplicate] March 31, 2023 by Tarik According to the api-doc: val list = arrayListOf<Int>() This is also mentioned here: How to initialize List in Kotlin? .