Hey all! Another week for me as I complete a coding challenge sent by Shopify. This is my initial state: state={ title: '', resultCt: 0, searchResults: {}, nominations: [] } Here, I want to add to nominations which is initiated as an empty array. I tried state.nominations.push(action.nominations) which was my…