Question: 
Write a function to reverse strings in a given list of string values.


Model's Code:
def reverse_string_list(strings):
    return [s[::-1] for s in strings]



Sample Correct Code:
def reverse_string_list(stringlist):
    result = [x[::-1] for x in stringlist]
    return result


Asserts:
assert reverse_string_list(['Red', 'Green', 'Blue', 'White', 'Black'])==['deR', 'neerG', 'eulB', 'etihW', 'kcalB']
assert reverse_string_list(['john','amal','joel','george'])==['nhoj','lama','leoj','egroeg']
assert reverse_string_list(['jack','john','mary'])==['kcaj','nhoj','yram']


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 456 of 974: 333/456 (73.02631578947368%): success