Name Elements in Vector R

x = c(1, 3, 5)
names(x) = c("a", "b", "c")
Kwams