# Empty List **Requirements:** ```eval_rst - :ref:`fundamentals:creating a list` - :ref:`fundamentals:returning a value` ``` Please read the docstring in the starter code. ## Starter Code ```python from typing import List def get_empty_list() -> List: """Returns an empty list""" return None ``` ## Tests ```python from main import get_empty_list def test_get_empty_list(): assert get_empty_list() == [] ```