pragma solidity ^0.4.24; contract arraytest { uint256[] array1; constructor () public { array1.push(0xAA); array1.push(0xBB); array1.push(0xCC); } }