I want to add a new letter into the const randomString what is wrong here?
You use const
to initiate randomString
When you use const
with a string, you cannot then modify the string or concatenate it. You need to use let
when assigning the empty string to randomString
Please post your actual code instead of a picture. Thanks