What do I put for "path" in the list component?

I see a field for “path” but I don’t know what it means or what I am supposed to put there.

The list component is designed to loop over an array of values. The path input is where you will specify where to find the array (in the data object) that you want us to loop over. For a data object that looks like:

{
  "name": "test data",
  "payload": {
    "likes": [
      { "name": "Troy", "handle": "@troy" },
      { "name": "Seth", "handle": "@seth" },
      { "name": "Riley", "handle": "@riley" }
    ]
  }
}

You can create a bulleted list of likes by using payload.likes as your path.