Question: How can you extract val to `x` in tuple `vt`

  1. let x = vt.1
  2. all of these answers
  3. let x = vt.val
  4. let (`_`, x) = vt

Answer: The correct answer of the above question is Option B:all of these answers