How can i display second items drupal 9 for loop

for now only can get first and last item so how can i display a second items ? thank for your times

{% if content.field_story_sub_stories['#items']|length > 0 %}
    {% for story in content.field_story_sub_stories['#items']|first %}
        {{ drupal_entity('node', story.value , 'env_series_2022') }}
    {% endfor %}
{% endif %}