Python Code Challenge

190 - What is wrong with the code below?
def reverse_string(s):
    return s[-1::]

print(reverse_string("hello"))