Question: 
Write a function to find all five characters long word in the given string by using regex.


Model's Code:
def find_long_word(text):
    import re
    return re.findall(r'\b\w{5}\b', text)



Sample Correct Code:
import re
def find_long_word(text):
  return (re.findall(r"\b\w{5}\b", text))


Asserts:
assert find_long_word('Please move back to strem') == ['strem']
assert find_long_word('4K Ultra HD streaming player') == ['Ultra']
assert find_long_word('Streaming Media Player') == ['Media']


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

Test 319 of 974: 229/319 (71.78683385579937%): success