Improper code format

Improper code format

Hello, 

I recently switched to the new Deluge editor in Zoho CRM and I am editing an existing script but it returns an error: Improper code format Correct format : <return_type> <category>.<function_name>(<type> <arg1>, <type> <arg1>,...<type> <arg50>){ <code> }

I defined the three arguments: 
  1. conID: Contacts / ID
  2. fname: Contacts / First name
  3. lname: Contacts / Last name

Here is the script: 
  1. combinedaddress = zoho.crm.getRecordById("Contacts",conID);
  2. map = Map();
  3. map.put("Test_Adressfeld",fname + ' ' + lname);
  4. con = zoho.crm.updateRecord("Contacts",conID.tolong(),map);
  5. info map;
  6. info con;

What am I doing wrong? 

Thanks for your help, M.