Selecting multiple elements with [

In base R, give me columns y and z for the rows where x > 1.

df
##   x y     z
## 1 1 k FALSE
## 2 2 l  TRUE
df[df$x > 1, c("y", "z")]
##   y    z
## 2 l TRUE