# 0081: Too many actual parameters

The command is given more parameters than it expects.

For example, the `Inc` [command](https://docs.sannybuilder.com/language/instructions/built-in-commands#inc) accepts either one or two parameters and supplying three would raise an error.

**Possible solutions:** check the related documentation and provide fewer parameters:

```
Sqr($var, 1) // error
Sqr($var) // OK
```
