You're building a sign-up page that emails users a code to verify their address. Your job is to generate that code.
Write a function that returns a verification code: a random string of length 10 built by randomly picking characters from the letters string below (repeats are allowed).
Note: Random is already available in this file, so you don't need to add an import statement.