---
id: 5d7925335ab63018dcec11fe
title: Part 019
challengeType: 0
isBeta: true
---
## Description
Arrow functions can have multiple statements:
```js
const fn = (x, y) => {
const result = x + y;
return result; // explicit return statement required
};
```
Use this syntax for the `highPrecedence` function.
## Instructions
## Tests
```yml
tests:
- text: See description above for instructions.
testString: assert(code.replace(/\s/g, "").includes("highPrecedence=str=>{returnstr"));
```
## Challenge Seed
```html
```
### Before Test
### After Test
```html
```
## Solution