unable to run robot test cases

I have latest chrome web driver and google chrome 108.0.5359.95 but still getting issue

C:\Users\bhimashankar.lokare\PycharmProjects\robotframework\TestCases>robot TC001_open_close_browser.robot
==============================================================================
TC001 open close browser
==============================================================================
TC001_open_close_browser
DevTools listening on ws://127.0.0.1:52591/devtools/browser/bf930fd3-14ac-4f91-b0d3-0e9d4cba926c
[6552:14748:1207/052407.826:ERROR:device_event_log_impl.cc(215)] [05:24:07.826] USB: usb_device_handle_win.cc:1045 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
[6552:14748:1207/052407.827:ERROR:device_event_log_impl.cc(215)] [05:24:07.827] USB: usb_device_handle_win.cc:1045 Failed to read descriptor from node connection: A device attached to the system is not functioning. (0x1F)
TC001_open_close_browser                                              | FAIL |
WebDriverException: Message: unknown error: Chrome failed to start: exited normally.
  (chrome not reachable)
  (The process started from chrome location C:\Program Files\Google\Chrome\Application\chrome.exe is no longer running, so ChromeDriver is assuming that Chrome has crashed.)
Stacktrace:
Backtrace:
        Ordinal0 [0x00CCACD3+2075859]
        Ordinal0 [0x00C5EE61+1633889]
        Ordinal0 [0x00B5B7BD+571325]
        Ordinal0 [0x00B7AA93+699027]
        Ordinal0 [0x00B76BE9+682985]
        Ordinal0 [0x00BADBD3+908243]
        Ordinal0 [0x00BAD6AA+906922]
        Ordinal0 [0x00BA7136+880950]
        Ordinal0 [0x00B7FEFD+720637]
        Ordinal0 [0x00B80F3F+724799]
        GetHandleVerifier [0x00F7EED2+2769538]
        GetHandleVerifier [0x00F70D95+2711877]
        GetHandleVerifier [0x00D5A03A+521194]
        GetHandleVerifier [0x00D58DA0+516432]
        Ordinal0 [0x00C6682C+1665068]
        Ordinal0 [0x00C6B128+1683752]
        Ordinal0 [0x00C6B215+1683989]
        Ordinal0 [0x00C76484+1729668]
        BaseThreadInitThunk [0x7660FEF9+25]
        RtlGetAppContainerNamedObjectPath [0x77927BBE+286]
        RtlGetAppContainerNamedObjectPath [0x77927B8E+238]
------------------------------------------------------------------------------
TC001 open close browser                                              | FAIL |
1 test, 0 passed, 1 failed
==============================================================================
Output:  C:\Users\bhimashankar.lokare\PycharmProjects\robotframework\TestCases\output.xml
Log:     C:\Users\bhimashankar.lokare\PycharmProjects\robotframework\TestCases\log.html
Report:  C:\Users\bhimashankar.lokare\PycharmProjects\robotframework\TestCases\report.html

set the Global variables for ${URL} first …

Open Chrome Browser
${chrome_options}= Evaluate sys.modules[‘selenium.webdriver’].ChromeOptions() sys
Call Method ${chrome_options} add_argument --start-maximized
Call Method ${chrome_options} add_argument --disable-extensions
Call Method ${chrome_options} add_argument --incognito
${list}= create list enable-logging
Call Method ${chrome_options} add_experimental_option excludeSwitches ${list}
Run Keyword If os.sep == ‘/’ Create Webdriver Chrome your-alias chrome_options=${chrome_options} executable_path=path_to_your_driver\chromedriver.exe
… ELSE Create Webdriver Chrome your-alias chrome_options=${chrome_options}
Go To ${URL}

What are the versions of Selenium and SeleniumLibrary?

And Python, Robotframework?

Do you have pywin32 installed? It may need some DLLs, and may give an indication of what is missing.
(I am not sure if you need pywin32, but you have something missing)