You are still working with the penguins_example DataFrame.
A zoologist has informed you that one more penguin inhabits our island. Insert the new data into the dataset:
| species | bill_length_mm | bill_depth_mm |
| Adelie | 45.7 | 15.5 |
Note that the DataFrame is already stored in the variable penguins_example, so you just need to insert your code before the print() function call. You don't need to import pandas here.