Can i connect two 16x4 lcd displays to arduino meg

Here's the code I used . All I did was add a few lines to the 'hello, world!' example code.

// include the library code:
#include <LiquidCrystal.h>

// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
LiquidCrystal lcd2(12, 10, 5, 4, 3, 2);

void setup() {
  // set up the LCD's number of rows and columns: 
  lcd.begin(16, 2);
  // Print a message to the LCD.
  lcd.print("hello, world!");
  
  lcd2.begin(16, 2);
  // Print a message to the LCD.
  lcd2.print("hey, world!");
  
    lcd2.setCursor(0, 1);
    lcd2.print("it works!");
}

void loop() {
  // set the cursor to column 0, line 1
  // (note: line 1 is the second row, since counting begins with 0):
  lcd.setCursor(0, 1);
  // print the number of seconds since reset:
  lcd.print(millis()/1000);
}

I have a nice picture, but the ftp access to my web space is not working at the moment. I'll add it when I can.

It's fixed - Here's the photo:

Don