Parameters are like variable declarations. You always need a type followed by a variable name. Multiple parameter declarations have to be separated by a comma. You have this:
(string K, string, G, string V)
The second parameter doesn’t have a variable name and your third parameter doesn’t have a type. You just have to remove the second comma that currently separates the type “string” and the name “G”