const stars = [ '★', '☆', '✦', '✧', '✯', '✰', '⁂', '✪', '✫', '✬', '✭', '✮', '✡', '✺', '✹', '✵', '✴', '✳', '✲', '✱', '✻', '✼', '✽', '✾', '✿', '❀', '❁', '❂', '❃', '❇', '❈', '❉', '❊', '❋', '⋆', '≛', '⊛', '✢', '✣', '✤', '✥', '☼', '⍟', '⊚', '☸', '✶', '❄', '❆', '❅', '⚝' ]; const starGrid = document.getElementById('starGrid'); const message = document.getElementById('message'); const decodeEntities = (function() { // this prevents any overhead from creating the object each time var element…