Hi, i am a total newbie and could you tell me whats wrong with this code?

#include <iostream.h>
#include <string.h>


int main()

{
char name[20];
char vclass[20];
char race[20];
int age[2000];



cout<<"Welcome to quest for the holy pistol!"<<endl;
cout<<"The name of the character: ";
cin.getline(name, 20, '\n');

cout<<"Pick a class: ";
cin.getline(vclass, 20, '\n');

cout<<"Pick a race: ";
cin.getline(race, 20, '\n');

cout<<"Age of the character: ";
cin.getline(age, 2000, '\n');

cout<<"Name:"<<name<<;
cout<<"Class:"<<vclass;
cout<<"Race:"<<race;
cout<<"Age:"<<age;


return 0;

}