---
id: 646d3c146e10b0ba222bb2a7
title: Step 64
challengeType: 0
dashedName: step-64
---
# --description--
In mathematics, an infix is a mathematical operator that appears between its two operands. For example, `1 + 2` is an infix expression.
To parse these expressions, you will need to map the symbols to relevant functions. Declare an `infixToFunction` variable, and assign it an empty object.
# --hints--
You should declare an `infixToFunction` variable.
```js
assert.match(code, /(?:const|let|var)\s+infixToFunction/);
```
You should use `const` to declare your `infixToFunction` variable.
```js
assert.match(code, /const\s+infixToFunction/);
```
Your `infixToFunction` variable should be an object.
```js
assert.isObject(infixToFunction);
```
Your `infixToFunction` object should be empty.
```js
assert.lengthOf(Object.keys(infixToFunction), 0);
```
# --seed--
## --seed-contents--
```html