Create a function that takes a binary string and returns the text. The eight bits on the binary string represent 1 character on the ASCII table. For further info, check out the resource tab.
binary_to_text("01101110011011110110010001100101") ➞ "node"
binary_to_text('0111001001100101011000010110001101110100') ➞ "react"
binary_to_text("011100000111100101110100011010000110111101101110") ➞ "python"
Inputs are all valid strings.