expected primary-expression before ')' token

Hi,

I am having some trouble with some code from a website, and I cannot seem to fix the error, after trying many things. It says "expected primary-expression before ')' token" Here is a little bit of code it constantly brings it up in:

#include <Keypad.h>

#include<LiquidCrystal.h>

#include<EEPROM.h>

LiquidCrystal liquid_crystal_display(9,8,7,6,5,4,);

char password[4];

char initial_password[4],new_password[4];

int i=0;

Am I missing something obvious here? I am not very good with the coding side, however I am trying to better my knowledge. Thanks in Advance :slight_smile:

(9,8,7,6,5,4,);Right there

AWOL:
(9,8,7,6,5,4,);Right there

Is this the incorrect part?
Tried removing the brackets, but it still won't compile?

Let me narrow it down for you ,)

AWOL:
Let me narrow it down for you ,)

I removed the comma and it seems to be working, thanks for your help :slight_smile: