Spot the incorrect syntax in a call signature interface.
interface Add { (a: number, b: number) => number; } const add: Add = (a, b) => a + b;
What is the bug in this code?