28.11 lab: prefix of 3 the prefix of 3 is the first 3 characters of a string. given a string input, output the first three characters of that string. assume the string will always have at least three characters. hint: use the string method substr(). ex: if the input is: chicken the output is: prefix: chi