Question: You have two arrays, a and b. Which line combines a and b as a list containing the contents of both?
- `val c = list of (a, b)`
- `val c = a + b`
- `val c = listOf(a+b)`
- `val c = listOf(*a, *b)`
Answer: The correct answer of the above question is Option D:`val c = listOf(*a, *b)`