#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2);
void setup() {
lcd.begin(16,2);
lcd.clear();
lcd.print("DINOSAUR");
// put your setup code here, to run once:
}
void loop() {
lcd.setCursor(7,2);
lcd.print("PARK");
// put your main code here, to run repeatedly:
}