This will `Run Keyword` for each items in the given list.

Example:

| ${items}=                 | `Create List`             | item1 | item2    | item3 |
| `EL Run Keyword For Each` | Process Item              | item  | ${items} |
|                           |
| *** Keywords ***          |
| Process Item              |
|     ${item}=              | `EL Evaluate`  | $[item] |
|     Log                   | ${item}        |

This will loop the {{items}} and call  {{Process Item}} keyword for each items.
Each call will have an EL variable named {{item}}.
