Get in the zone

  1. Create a list consisting of a vector of numbers and a vector of strings.
  2. Check it out with str, names and summary
  3. Find the second element of the first entry of your list. One way to do this is:
my_list$first_entry[2]
## [1] 2

Warmup Exercise:What are three other ways you can do that?