Write code that prints the third row of inputList in one string. The elements should be separated by a comma and space.
It is guaranteed that inputList is already initialized and contains at least 3 nested lists.
Tip: Use the joinToString() function.
Sample Input 1:
val inputList = mutableListOf(
mutableListOf("one", "two", "three"),
mutableListOf("four", "five", "six"),
mutableListOf("seven", "eight", "nine"),
mutableListOf("ten", "eleven", "twelve")
)Sample Output 1:
seven, eight, nineSample Input 2:
val inputList = mutableListOf(
mutableListOf("(¬‿¬)_", "Program"),
mutableListOf("_(^.^)/", "with"),
mutableListOf("(>^_^)>", "Kotlin!")
)Sample Output 2:
(>^_^)>, Kotlin!