What's this code snippet going to display in the console?

     [,1] [,2] [,3]
[1,]    1    4    8
[2,]    2    5    8
[3,]    3    6    8
     [,1] [,2]
[1,]    1    4
[2,]    2    5
[3,]    3    6
[4,]    8    8

Correct! cbind()appends a vector as a column to our matrix.

Oops! cbind()appends a vector as a column to our matrix.