Hey, When i say right i mean is this the best way to do it. The program works fine and I just put it together in about one minute.
#include <iostream>
using namespace std;
int main()
{
srand(time(NULL));
const char* words[] = {"silly", "bafoon", "monkey"};
int i = rand() % 3;
cout << words[i];
cin.get();
return 0;
}