Confirm Deletion
Are you sure you want to delete the saved search?
menu_struct{ drinks: ['milk','coffee','tea','chai'] sandwiches: ['ham','turkey',NULL] salads: ['caesar','cobb','greek','chipotle'] }
Input Value
RETURN VALUE
menu_struct.drinks[1]
'coffee'
menu_struct.sandwiches[2]
NULL
menu_struct.salads[3]
'chipotle'
menu_struct.drinks[0,3]
['milk','coffee','tea']