What is the result of these three lines of code?
vect1 <- c(1:4) vect2 <- c(1:2) vect1 * vect2
[1] 1 2 3 4 1 2
[1] 1 4 3 8
[1] 1 2 3 4 2 4 6 8
ERROR