Introduction to Ansible

This topic is to discuss the following lesson:

Hi, I have a quick question.

In this YAML file

# Employee records
- martin:
    name: Martin D'vloper
    job: Developer
    skills:
      - python
      - perl
      - pascal
- tabitha:
    name: Tabitha Bitumen
    job: Developer
    skills:
      - lisp
      - fortran
      - erlang

skills: is a list that contains three values - python, perl, and pascal? (for the first employee record).

Thank you.
David