Create a numeric vector called age whose elements contain the ages of three people you know, where the names of each element correspond to the names of those people.age<-c(26,29,30)names(age)<-c("Al","Ani","Nav")age

## Al Ani Nav

## 26 29 30