Lists allow users to store multiple elements (like vectors and matrices) under a single object. You can use the list function to create a list:
l1 <- list(c(1, 2, 3), c("a", "b", "c"))
l1
## [[1]]
## [1] 1 2 3
##
## [[2]]
## [1] "a" "b" &q...