---
id: 5d792534f0eda837510e9192
title: Part 038
challengeType: 0
isBeta: true
---
## Description
Now use the ternary operator in the last line to return `applyFunction(fn, args)` if the statement is true, and `match` otherwise.
## Instructions
## Tests
```yml
tests:
- text: See description above for instructions.
testString: assert(applyFn("2+2*2") === "6" && applyFn("(2+2)*2") === "4*2");
```
## Challenge Seed
```html
```
### Before Test
### After Test
```html
```
## Solution