I was going through some Kotlin basics and found two syntaxes.
ArrayList()
And
arrayListOf() >
arrayListOf()
is just an extension function that looks like this:
public inline fun arrayListOf(): ArrayList = ArrayList()