You are working with the penguins dataset. You want to use the summarize() and mean() functions to find the mean value for the variable body_mass_g. You write the following code:penguins %>%drop_na() %>%group_by(species) %>%Add the code chunk that lets you find the mean value for the variable body_mass_g.summarize(mean(body_mass_g))What is the mean body mass in g for the Adelie species?Single Choice Question. Please Choose The Correct Option ✔A 3733.088B 5092.437C 3706.164D 4207.433