Suppose I have a dictionary:
words={"array":"collection of similar types of data", "queue":"a list of data items, commands, etc., stored so as to be retrievable in a definite order, usually the order of insertion.", "vector":"Different from an array storing data in a fixed size, a vector stores data in a resizeable array.", "linked list":"consists of nodes where each node contains a data field and a reference(link) to the next node in the list.", "list":"store multiple items in a single variable"}.
What code snippet would access the definition for list?