How to specify form email "reply-to"

I would like to specify the “Reply-to” value of form emails.
example:
process:
-
email:
from: "{{ form.value.email }}"
to: "{{ config.plugins.email.to }}"
reply-to: "{{ form.value.email }}"
subject: "Contact by {{ form.value.name|e }}"
body: “{% include ‘forms/data.html.twig’ %}”

Found it! Just had to use lowline in place of hyphen
reply_to: “{{ form.value.email }}”