# .ask()

## Description

Ask will pause execution of the program to wait for an input from the user and then return that input.

## Parameters

Ask takes no parameters.

## Usage On Strings

```javascript
str = "How are you today?".ask()
log str
```
