 
      
      subright()Extract a specified number of characters from the right side of a string
subright(s, len)
s (string)  — A stringlen (number)  — How many characters are extracted
string — Returns the extracted string
subright("Hello World", 2)   ' Returns "ld"