Which of the following is valid to declare a variable using let?
let
let $money = 100;
let const = 2;
let 123 = 'hello';
let var = 5;