> For the complete documentation index, see [llms.txt](https://docs.plumvoice.com/dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.plumvoice.com/dev/voicexml/application-and-session-variables/application.lastresultusd-i-.recording.md).

# application.lastresult$\[i].recording

## application.lastresult$\[i].recording

Contains the last utterance if the global property “recordutterance” is set and audio was collected.

#### Example <a href="#example" id="example"></a>

```markup
<?xml version="1.0"?>
<vxml version="2.0">
  <property name="recordutterance" value="true"/>
  <form>
    <field name="first_name" type="firstname">
      <prompt bargein="false">
        <audio src="en_us/enter_first_name.wav">
          Please say your first name and spell it.
        </audio>
      </prompt>
      <filled>
        Your recording is <value expr="first_name$.recording"/>.
        The recording size is <value expr="first_name$.recordingsize"/> bytes.
        The recording duration is <value expr="first_name$.recordingduration"/> milliseconds.
      </filled> 
    </field>
  </form>
</vxml>
```

### Explanation

None

### Notes

None
