Review the following code. What is the result of line 3?
xvect<-c(1,2,3) xvect[2] <- "2" xvect
[1] 1 2 3
[1] "1" 2 "3"
[1] "1" "2" "3"
[1] 7 9