Here's a class named Patient. It has one string field name.
You want to create a method that would allow your patient to call for a doctor. Add the method say that prints the message containing the name of a patient (instead of "...") and their request for a doctor:
Hello, my name is ..., I need a doctor.
This method doesn't take any parameters and doesn't return anything.
Do not make the field and method private.