React and Redux cosole.log in Moving Forward From Here

Tell us what’s happening:
Error: The message Now I know React and Redux! should be logged to the console.
Is there anything other than console.log with the message to be done?

Your code so far


 import React from 'react'
 import ReactDOM from 'react-dom'
 import { Provider, connect } from 'react-redux'
 import { createStore, combineReducers, applyMiddleware } from 'redux'
 import thunk from 'redux-thunk'

 import rootReducer from './redux/reducers'
 import App from './components/App'

 const store = createStore(
   rootReducer,
   applyMiddleware(thunk)
 );

 ReactDOM.render(
   <Provider store={store}>
     <App/>
   </Provider>,
   document.getElementById('root')
 );

console.log('Now I know React and Redux!');

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36.

Link to the challenge:

Don’t uncomment the line just do what they have mention

Make sure you comment out all the code above except your console.log.