# - **Question**: Write a function that takes a string and returns the string reversed.
# Include error handling to manage cases where the input is not a string.
# - **Example**: Input: `"hello"`, Output: `"olleh"`.
# input = string
# output = string
# error handling
def reverseString():
return "ok"
string_example1 = "hello"
string_example2 = "Sauron"
string_example3 = 12345
print(reverseString(string_example1))