Can someone fox the error
##include <iostream> #include <cstdlib> #include <ctime> #include <conio.h> // for _kbhit() and _getch() using namespace std; const int width = 20; const int height = 5; int studentPos = 2; int obstaclePos = width - 1; int score = 0; void initializeGame() { srand(time(NULL)); cout << "Press any key to start the game!" << endl; _getch(); system("cls"); } void draw() { system("cls"); for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (i == studentPos && j == 0) { cout << "S"; } else if (i == height - 1 && j == obstaclePos) { cout << "T"; } else { cout << "."; } } cout << endl; } cout << "Score: " << score << endl; } void input() { if (_kbhit()) { switch (_getch()) { case 'w': if (studentPos > 0) studentPos--; break; case 's': if (studentPos < height - 1)