From the given code below, answer the following questions
CREATE TABLE Users (
UserID INT AUTO_INCREMENT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Email VARCHAR(100) UNIQUE,
DateOfBirth DATE );
What is the name of the table being created in the SQL code?