cin >> choice;
int fail = 1;
for (int count = 0; count < 5; count++)
{
if (numbers[count] == choice)
fail = 0;
}
if(fail == 1); <-- Sorry, no ; here :)
cout << "sorry choice not found";
else