In Build a Medical Data Validator question 4

i have an error that im really confuse for me i done right

Step 4

Complete the dictionary by adding the following three key-value pairs:

  • A key diagnosis with the value of Hypertension

  • A key medications with the value of the list ['Lisinopril']

  • A key last_visit_id with the value of V2301.

my answer

medical_records = [

{

    'patient_id': 'P1001',

    'age': 34,

    'gender': 'Female',

    'diagnosis': 'Hypertension',

    'medications': ['lisinopril'],            #here i looking for errors here 

    'last_visit_id': 'V2301'

}    

]

error message

Sorry, your code does not pass. Keep trying.

You should have a medications key with the value of the list ['Lisinopril'] in your dictionary.

Im confuse i think i have follow the instructions

thanks

ron

Can you please link to the url of the step you are stuck on.

this is the URL https://www.freecodecamp.org/learn/python-v9/workshop-medical-data-validator/step-4

Check caps. Copy/paste given text when you can to reduce typing errors.

I didnt notice the capitalize letter, small leter l is almost desame in capitalize L, thank u