Review line 1 below. What does the statement in line 2 return?
1 mylist <- list(1,2,"C",4,5) 2 unlist(mylist)
[1] "1" "2" "C" "4" "5"
"C"
[1] 1 2 4 5
[1] 1 2 C 4 5