Try to step back a bit and read the instructions. Here is how to create a combined reducer and assign it to a variable called rootReducer per the instructions
The method of combineReducers() provided by redux takes only one object as an argument, that object has a key-value pair of the names you want to assign to your unit reducers as the keys and the unit reducers themselves as values. The method then outputs one big reducer to hold all state information. state and action are thus only passed to your individual unit reducers only, the combiner does not need that information passed to it as arguments since it already has that info available in the object passed to it.
ok,let me try to explain it.U should be familiar by now with store .How do u use it ? .
1-create a constant ; const store
2-use Redux to get a method u need from it which is createStore
3-Finally u put your reducer in that method
Now,rootReducer is exactly the same thing but instead of createStore u want combineReducers
and instead of giving your method a reducer , you will give it an object .again it is EXACTLY DONE IN THE SAME WAY .