Question: Which line of code shows how to call a Fibonacci function, bypass the first three elements, grab the next six, and sort the elements in descending order?

  1. `val sorted = fibonacci().skip(3).take(6).sortedDescending().toList()`
  2. `val sorted = fibonacci().skip(3).take(6).sortedByDescending().toList()`
  3. `val sorted = fibonacci().skip(3).limit(6).sortedByDescending().toList()`
  4. `val sorted = fibonacci().drop(3).take(6).sortedDescending().toList()`

Answer: The correct answer of the above question is Option D:`val sorted = fibonacci().drop(3).take(6).sortedDescending().toList()`