Niche list m jo 2 srivastava hai , shayad same person ke accounts hai . aise Maine boht saare accounts ke saath dekha hai hote huve Niket Raj Dwivedi medial app m bohot saare fake accounts bhare pade hai jo showcase Mai participate karne walo ke paic
Question: What is the output of the following Kotlin code snippet?
fun main() {
val list = mutableListOf(1, 2, 3, 4, 5)
val result = list.fold(5) { acc, num -> acc * num }
println(result)
}